Interface ICandle
Represents the most widely used candlestick parameters.
Namespace: FancyCandles
Assembly: FancyCandles.dll
Syntax
public interface ICandle
Properties
| Improve this Doc View SourceC
Gets the Close of the candlestick (closing price).
Declaration
double C { get; }
Property Value
Type | Description |
---|---|
System.Double | The Close of the candlestick (closing price). |
H
Gets the High of the candlestick (price maximum).
Declaration
double H { get; }
Property Value
Type | Description |
---|---|
System.Double | The High of the candlestick (price maximum). |
L
Gets the Low of the candlestick (price minimum).
Declaration
double L { get; }
Property Value
Type | Description |
---|---|
System.Double | The Low of the candlestick (price minimum). |
O
Gets the Open of the candlestick (opening price).
Declaration
double O { get; }
Property Value
Type | Description |
---|---|
System.Double | The Open of the candlestick (opening price). |
t
Gets the time of the candlestick.
Declaration
DateTime t { get; }
Property Value
Type | Description |
---|---|
System.DateTime | The time of the candlestick. |
V
Gets the Volume of the candlestick.
Declaration
double V { get; }
Property Value
Type | Description |
---|---|
System.Double | The Volume of the candlestick. |