oi() |
Top Previous Next |
oi( barIndex [, sym()] [, inv()] )
Returns the open interest at the specified bar index.
Parameters
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") );
}
|