llv() |
Top Previous Next |
llv( numBars, series )
New in EFS2. This function will return the lowest value found in a series within numBars number of bars.
Parameters
Usage
function main() { var myVar1;
//find the lowest-low over the last 50 bars myVar1 = llv( 50, low() );
}
|