MQL4 MQL4 Uruchom EA na wszystkich symboli, dodając tylko do jednego wykresu

string syms[] = {"EURUSD","USDJPY"}; // Currency pair symbol array

for(int i=0; i < ArraySize(syms); i++) {
 double RSI = iRSI( syms[i], 15, 7,PRICE_CLOSE,0 );
 // ...
}
Anxious Alpaca