highest()

eSignal EFS 2

highest()

Top  Previous  Next

 

highest( numBars, series )

 

New in EFS2. This function will return the highest value found in a series within numBars number of bars.

 

Parameters

 

numBars

the number of bars back to search

series

the series in which to search for the value

 

Usage

 

function main() {

var myVar1;

 

       //find the highest-high over the last 50 bars

       myVar1 = highest( 50, high() );

 

}

 

hhv()