I use indicator SMA, a want 1 minute timeframe for datatype on High
i use this code
Add(PeriodType.Minute, 1);
...
SMA(BarsArray[1], 60)[0]
How to use Add func on High price datatype
I try this Add("ES 12-06", PeriodType.Minute, 1, MarketDataType.Ask);
In manual:
Possible values are:
MarketDataType.Ask
MarketDataType.Bid
MarketDataType.Last
I need analiz High data, not ask, bid or last. How to be?

Comment