|
Nice EA. Which MA's and settings have you found best?
I tried this one and it produced really good results on the 4hr.
-------
extern int
FastMAPeriod = 10,
FastMAType = 3, //0:SMA 1:EMA 2:SMMA 3:LWMA
FastMAPrice = 1, //0:Close 1:Open 2:High 3:Low 4:Median 5:Typical 6:Weighted
SlowMAPeriod = 100,
SlowMAType = 3, //0:SMA 1:EMA 2:SMMA 3:LWMA
SlowMAPrice = 2; //0:Close 1:Open 2:High 3:Low 4:Median 5:Typical 6:Weighted
extern string
Exit_Setting = "---------- Exit Setting";
extern bool
ReverseCondition = false, // TRUE:buy-sell , sell-buy
ConfirmedOnEntry = false, // TRUE:entry on the next signal bar
StopAndReverse = true, // TURE:if signal change, exit and reverse order
PureSAR = false; // TRUE:no SL, no TP, no TS
--------
|