second()

eSignal EFS 2

second()

Top  Previous  Next

 

second( barIndex [, sym()] [, inv()] )

 

Returns the second at the specified bar index.

 

Parameters

 

barIndex

bar index of series to retrieve

sym()

optional. specify a symbol to use

inv()

optional. specify a bar interval to use

 

Usage

 

function main() {

 

       ...

       ...

       //retrieve the value for the current price bar

       myVar = second(0);

       //retrieve the value for the previous price bar

       myVar = second(-1);

       //retrieve the value for a specific symbol

       myVar = second(0, sym("IBM") );

       //retrieve the value for a specific symbol/interval

       myVar = second(0, sym("IBM,5") );

       //retrieve the value for a specific bar interval

       myVar = second(0, inv("15") );

 

 

}