Table of Contents

Struct BOBChartCandlePoint<TX>

Namespace
BlazOrbit.Charts.Models
Assembly
BlazOrbit.Charts.dll

OHLC (open / high / low / close) data point for BOBCandlestickChart<TX>. Optional Volume drives a paired volume bar pane when the chart is configured with ShowVolumePane=true.

public readonly struct BOBChartCandlePoint<TX>

Type Parameters

TX

Type of the X-axis (typically DateTime / int).

Constructors

BOBChartCandlePoint(TX, double, double, double, double, double)

OHLC (open / high / low / close) data point for BOBCandlestickChart<TX>. Optional Volume drives a paired volume bar pane when the chart is configured with ShowVolumePane=true.

public BOBChartCandlePoint(TX X, double Open, double High, double Low, double Close, double Volume = 0)

Parameters

X TX
Open double
High double
Low double
Close double
Volume double

Properties

Close

public double Close { get; init; }

Property Value

double

High

public double High { get; init; }

Property Value

double

Low

public double Low { get; init; }

Property Value

double

Open

public double Open { get; init; }

Property Value

double

Volume

public double Volume { get; init; }

Property Value

double

X

public TX X { get; init; }

Property Value

TX