Forum Topics not found
craig.bobbin 07 Jul 2016, 06:44
Spotware said:
Dear Trader, In the square brackets you write the index of the historical trend bar. The index is always the trend bar you want to use - 1. The following code snippet illustrates it: double high = MarketSeries.High[0]; double low = MarketSeries.Low[0];
Dear Trader,
In the square brackets you write the index of the historical trend bar. The index is always the trend bar you want to use - 1.
The following code snippet illustrates it:
double high = MarketSeries.High[0]; double low = MarketSeries.Low[0];
does this mean
double high = MarketSeries.High[50]
will return the highest price traded in the last 50 bars?
craig.bobbin
07 Jul 2016, 06:44
RE:
Spotware said:
does this mean
double high = MarketSeries.High[50]
will return the highest price traded in the last 50 bars?
@craig.bobbin