0

我如何在 Expert Adviser 上获取交易量数据?(不是指标)

我知道那种在指标上获得交易量的方法。所以我想将交易量数据带给 Expert Adviser。
我该怎么做?

4

1 回答 1

1
long value = iVolume(Symbol(), 0, 0); //mt4

long value = iVolume(Symbol(), 0, 0); 
long iVolume(const string symbol,const ENUM_TIMEFRAMES tf, const int shift){
   long timeseries[1];
   if(CopyTickVolume(symbol,tf,shift,1,timeseries)==1)
      return timeseries[0];
   return -1;
}  // mt5, CopyRealVolume is same
于 2017-09-03T22:20:19.493 回答