Low (Reserved Word)

image\trumpet2.gif Disclaimer

Represents the low price of the specified time increment or group of ticks.

Low

Remarks

L can be used in place of Low.

Examples

Low of 1 bar ago

returns the Low price of the previous bar

Average(Low, 10)

returns the Average of the last 10 Low prices

Additional Example

To check that the last two bars have Low prices lower than the previous bar, the following language can be used in a ShowMe study:

If Low < Low [1] AND Low [1] < Low [2] Then
 
Plot1(Low, "Decline");