High
Previous Topic  Next Topic 

Definition

A collection of historical bar high prices.


Property Value

A data series type object that implements the IDataSeries interface.


Syntax


High
High[int barsAgo]


Examples

// Current bar high price
double barHighPrice = High[0];

// High price of 10 bars ago
double barHighPrice = High[10];

// Current bar value of a 20 period simple moving average of high prices
double value = SMA(High, 20)[0];