Class
OhlcDataPoint

An Open-High-Low-Close data point.

Definition

Constructors

OhlcDataPoint()

Initializes a new instance of the OhlcDataPoint class.

Declaration

cs-api-definition
public OhlcDataPoint()

Properties

Close

Gets or sets the close value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Close { get; set; }

Property Value

double

High

Gets or sets the high value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double High { get; set; }

Property Value

double

IsFalling

Gets a value indicating whether this instance is falling (Bearish).

Declaration

cs-api-definition
public bool IsFalling { get; }

Property Value

bool

IsInPlotRange

Determines whether the data point may be plotted correctly.

Declaration

cs-api-definition
public override bool IsInPlotRange { get; }

Property Value

bool

Overrides CategoricalDataPointBase.IsInPlotRange

IsRising

Gets a value indicating whether this instance is rising (Bullish).

Declaration

cs-api-definition
public bool IsRising { get; }

Property Value

bool

Low

Gets or sets the low value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Low { get; set; }

Property Value

double

Open

Gets or sets the open value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Open { get; set; }

Property Value

double