| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Quote:
I looked in side the code and this EA works as the following. First of all we have cci1, cci2 and ema. Code:
cci1 = iCCI(NULL, 0, CCI_Period, PRICE_TYPICAL, 1); cci2 = iCCI(NULL, 0, CCI_Period, PRICE_TYPICAL, BarsForCheck); ema = iMA (NULL, 0, EMA_Period, 0, MODE_EMA, PRICE_TYPICAL, 1); cci2 is the same with cci1 but during the 4 bars ago. ema is EMA with Typical Price and period of 34 on the first bar (previous from current one). Signal for buy: Code:
cci1>100 && cci2<-100 && ema>Close[1] Signal for sell: Code:
cci1<-100 && cci2>100 && ema<Close[1] Closng the orders: sl, tp, ts and signals for exit. I did not find any single case on the history which meets this sell/buy requirements. Last edited by newdigital; 09-22-2006 at 10:03 AM. |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|