Data
From MultiCharts
Used to specify a particular data series in a multi-symbol chart; each data series in a multi-symbol chart has a unique Data Number.
Usage
DataN
Where:
- N - the Data Number of the data series.
Or:
Data(N)
Where:
- N - a numerical expression specifying the Data Number of the data series.
Examples
High Of Data2
Will return the high price of a bar in the data series with the Data Number of 2.
High Of Data(2)
Will return the high price of a bar in the data series with the Data Number of 2.
Close Data(3)
Will return the close price of the third data series.
value1 = 2;
High Data(value1) + Low Data(value1)
Will add the High of the second data series to the low of the second data series.