Skip to main content

FinancialPoint Struct

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a financial data point (Open-High-Low-Close).

public struct FinancialPoint

Inheritance: ValueType -> FinancialPoint

Properties

NameDescription
CloseGets or sets the closing price.
DataItemGets or sets the original data item used to create this point.
DateGets or sets the date.
HasFiniteValuesGets whether all OHLC values are finite and renderable.
HighGets or sets the highest price.
IndexGets or sets the index of the data point.
IsBullishGets whether this is a bullish (up) candle.
LabelGets or sets the display label.
LowGets or sets the lowest price.
OpenGets 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; }