GetClose()

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > Bars >

GetClose()

Previous page Return to chapter overview Next page

Definition

Returns the closing price at the current bar index value.

 

Method Return Value

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

 

Syntax

Bars.GetClose(int index)

 

Parameters

index

An int representing an absolute bar index value

 

 

Examples

ns

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 close price at the selected bar index value
    double closePrice = Bars.GetClose(barIndex);
    Print("Bar #" + barIndex + " closing price is " + closePrice);
  }
}