Experts: EMA_RSI_RISK-EA

 

EMA_RSI_RISK-EA:

Expert Advisor for MetaTrader 5 that combines Exponential Moving Averages (EMA) and Relative Strength Index (RSI) to generate trading signals. Includes risk management features and trading time filter.

Author: solyemam

[Deleted]  

Hi, it looks interesting but I don't get any results in backtest:









No errors in Journal but also no trades...

 

Hello,

replace this line 

if (TradeLong && bullCross && rsi >= RSI_Buy_Thresh && !hasPos)

with this 

if (TradeLong && !hasPos)

and this line:

if (TradeShort && bearCross && rsi <= RSI_Sell_Thresh && !hasPos)

with this:

if (TradeShort  && !hasPos)
 
MQL #:

Hello,

replace this line 

with this 

and this line:

with this:

no solution, that's just essentially removing the signal logic and making it trade randomly. 

I have attached a fixed version

Files: