GetHigh()

View as Markdown

Definition

Returns the high price at the selected bar index value.

Method Return Value

A double value that represents the high price at the desired bar index.

Syntax

Bars.GetHigh(int index)

Parameters

ParameterDescription
indexAn int representing an absolute bar index value

Examples

protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
base.OnRender(chartControl, chartScale);
// loop through only the rendered bars on the chart
for(int barIndex = ChartBars.FromIndex; barIndex <= ChartBars.ToIndex; barIndex++)
{
// get the high price at the selected bar index value
double highPrice = Bars.GetHigh(barIndex);
Print("Bar #" + barIndex + " high price is " + highPrice);
}
}