FinancialPoint Struct
Definition
Represents a financial data point (Open-High-Low-Close).
public struct FinancialPoint
Properties
| Name | Description |
|---|---|
| Close | Gets or sets the closing price. |
| DataItem | Gets or sets the original data item used to create this point. |
| Date | Gets or sets the date. |
| HasFiniteValues | Gets whether all OHLC values are finite and renderable. |
| High | Gets or sets the highest price. |
| Index | Gets or sets the index of the data point. |
| IsBullish | Gets whether this is a bullish (up) candle. |
| Label | Gets or sets the display label. |
| Low | Gets or sets the lowest price. |
| Open | Gets or sets the opening price. |
Close Property
Gets or sets the closing price.
public double Close { get; set; }
DataItem Property
Gets or sets the original data item used to create this point.
public object DataItem { get; set; }
Date Property
Gets or sets the date.
public DateTime Date { get; set; }
HasFiniteValues Property
Gets whether all OHLC values are finite and renderable.
public bool HasFiniteValues { get; set; }
High Property
Gets or sets the highest price.
public double High { get; set; }
Index Property
Gets or sets the index of the data point.
public int Index { get; set; }
IsBullish Property
Gets whether this is a bullish (up) candle.
public bool IsBullish { get; set; }
Label Property
Gets or sets the display label.
public string Label { get; set; }
Low Property
Gets or sets the lowest price.
public double Low { get; set; }
Open Property
Gets or sets the opening price.
public double Open { get; set; }