Home System Trading Post

Mastering the Sensitive EA for MetaTrader 5: Your Guide to Smart Trading

Attachments
22087.zip (5.02 KB, Download 0 times)

Idea Creator: Scriptor

Code Author: barabashkakvn

The Sensitive EA is designed to identify trading opportunities as soon as a new bar appears, while the trailing feature operates with each tick. When the EA checks for signals, it doesn’t just compare the main and signal lines on the current and previous bars. It also converts the main line value into points to compare it against the MACD open level parameter. When a BUY signal is detected, any open SELL positions are closed, and vice versa.

Open Signals

BUY Signal:

   bool open_buy_signal=(main[0]<0 && main[0]>signal[0] && main[1]<signal[1] &&  
                          MathAbs(main[0])>(MACDOpenLevel*m_symbol.Point()));

SELL Signal:

   bool open_sell_signal=(main[0]>0 && main[0]<signal[0] && main[1]>signal[1] &&  
                          MathAbs(main[0])>(MACDOpenLevel*m_symbol.Point()));

EUR/USD, M15

Sensitive EURUSD

USD/JPY, M15:

Sensitive USDJPY

Related Posts

Comments (0)