oi()

eSignal EFS 2

oi()

Top  Previous  Next

 

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

 

Returns the open interest 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 = oi(0);

       //retrieve the value for the previous price bar

       myVar = oi(-1);

       //retrieve the value for a specific symbol

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

       //retrieve the value for a specific symbol/interval

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

       //retrieve the value for a specific bar interval

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

 

 

}