Closing price constant of the current bar or of the Nth last bar.
Syntax:
1 |
Close[N] |
Example:
1 2 3 4 5 |
//Close of the current bar Close[0] or Close //Close of the 20th previous bar from current close Close[20] |