LowestAll ( IDataHolder data );
Description
Returns the lowest value of data
for all bars in the chart.
Input parameters
Parameter | Default value | Description |
---|---|---|
data | - | Defines data for which the lowest value is found. |
Example
def HH = HighestAll(high);
def LL = LowestAll(low);
plot G1 = HH / 2;
plot G2 = (HH + LL) / 2;
plot G3 = HH / 4;
plot G4 = (HH - LL) / 4 + LL;
The example shows the Major Gann Levels which uses all chart bars to calculate the maximum high
and minimum low
values.