Skip to content

IndicatorBars

Summary

The interface representing an indicator bars that are displayed as an output.

Signature

1
public abstract interface IndicatorBars

Namespace

cAlgo.API

Properties

Item

Signature

1
public abstract OhlcvBar Item {get; set;}

Return Value

OhlcvBar

Count

Summary

Gets the number of bars.

Signature

1
public abstract int Count {get;}

Return Value

int

OpenPrices

Summary

Gets the Open price bars data.

Signature

1
public abstract DataSeries OpenPrices {get;}

Return Value

DataSeries

HighPrices

Summary

Gets the High price bars data.

Signature

1
public abstract DataSeries HighPrices {get;}

Return Value

DataSeries

LowPrices

Summary

Gets the Low price bars data.

Signature

1
public abstract DataSeries LowPrices {get;}

Return Value

DataSeries

ClosePrices

Summary

Gets the Close price bars data.

Signature

1
public abstract DataSeries ClosePrices {get;}

Return Value

DataSeries

TickVolumes

Summary

Gets the Tick volumes data.

Signature

1
public abstract DataSeries TickVolumes {get;}

Return Value

DataSeries

Output

Summary

Gets the indicator output.

Signature

1
public abstract IndicatorBarOutput Output {get;}

Return Value

IndicatorBarOutput