Hi
I am not getting the last price with this code, is there a problem?
thx
I am not getting the last price with this code, is there a problem?
thx
MQL5:
string names[5]; names[0]=("EURUSD"); names[1]=("GBPUSD"); names[2]=("USDCHF"); for(uchar i=0;i<ArraySize(names);i++) { double deal_last; SymbolInfoDouble(names[i],SYMBOL_LAST,deal_last); FileWrite(filehandle,names[i],deal_last); }
Last edited by a moderator: