Does comparing multi-currency indicators work in a MT4 EA?
If I attach the EA onto EURUSD chart, would RSI_GBP return a value?
Should I attach the same EA to both EURUSD and GBPUSD
i.e. of the multi-currency EA that trade EURUSD and GBPUSD
If I attach the EA onto EURUSD chart, would RSI_GBP return a value?
Should I attach the same EA to both EURUSD and GBPUSD
i.e. of the multi-currency EA that trade EURUSD and GBPUSD
Inserted Code
double RSI_EUR = iCustom(Symbol_1, TimeFrame, "RSI", 0, 0);
double RSI_GBP = iCustom(Symbol_2, TimeFrame, "RSI", 0, 0);
if (
(RSI_EUR < 70)
&& (RSI_GBP > 30)
)
{
Buy
......