month() |
Top Previous Next |
month( barIndex [, sym()] [, inv()] )
Returns the month at the specified bar index.
Parameters
Usage
function main() {
... ... //retrieve the value for the current price bar myVar = month(0); //retrieve the value for the previous price bar myVar = month(-1); //retrieve the value for a specific symbol myVar = month(0, sym("IBM") ); //retrieve the value for a specific symbol/interval myVar = month(0, sym("IBM,5") ); //retrieve the value for a specific bar interval myVar = month(0, inv("15") );
}
|