9# Complex Trading System EA
Expert Advisor Metatrader
Submit by Leroy 05/02/2012
Bassic setting
extern double Lots = 0.1;
extern double TakeProfit = 50;
extern double StopLoss = 50;
extern int TrailingProfit=0;//|------------------trailing stop after profit reached
extern int TrailingStop=30;//|--------------------trailing stop
extern int TrailingStep=0;//|--------------------trailing step
extern double MACDByeLevel = 0.0;
extern double MACDSellLevel = 0.0;
extern double RSILevel = 50;
extern double FastMA = 5;
extern double SlowMA = 10;
Time Frame H1 or higher
Time Frame H1 or higher
• 5 period WMA (Weighted Moving Average)
• 10 period SMA
(Simple Moving Average)
• Slow
Stochastic (5,3,3 (exponential))
• RSI (14)
• MACD (12/26/9 (exponential))
BUY: MA1 > MA2, RSI > 50, MACD Fast > MACD Signal and Stochastic is signaling up (fast line above the slow line).
SELL: MA1 < MA2, RSI < 50, MACD Fast < MACD Signal and Stochastic is signaling down (fast line below slow line).
(Test without optmization)