Low

View as Markdown

Definition

A collection of historical bar low prices.

Property Value

An ISeries\<double\> type object. Accessing this property via an index value int barsAgo returns A double value representing the price of the referenced bar.

Syntax

Low

Low[int barsAgo]

Examples

1// Current bar low price
2double barLowPrice = Low[0];
3
4// Low price of 10 bars ago
5double barLowPrice = Low[10];
6
7// Current bar value of a 20 period exponential moving average of low prices**
8double value = EMA(Low, 20)[0];