Class
OhlcDataPoint

Defines a data point that represents a data point that can be plotted on an open-high-low-close chart.

Definition

Constructors

OhlcDataPoint()

Initializes a new instance of the OhlcDataPoint class.

Declaration

cs-api-definition
public OhlcDataPoint()

Properties

Close

Gets or sets the close associated with the point.

Declaration

cs-api-definition
public double Close { get; set; }

Property Value

double

High

Gets or sets the high associated with the point.

Declaration

cs-api-definition
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

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 associated with the point.

Declaration

cs-api-definition
public double Low { get; set; }

Property Value

double

Open

Gets or sets the open associated with the point.

Declaration

cs-api-definition
public double Open { get; set; }

Property Value

double