| 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 (7) | Thread Tools | Display Modes |
|
||||
|
Hi again, I wonder if there was a small error in the code of v2? Here is what i find:
Quote:
(Sell1_1 > Sell1_3 && Sell2_1 <= Sell2_3+Delta*Point)//changed this to match line one in Buy but on Sell // original line was: (Sell1_1 > Sell1_3 && Sell2_1 <= Sell2_3) Thank you in advance. Now onto my "Delta" question. Am i correct in thinking, while looking at the code that the "Delta" will place the no-trade-zone around both the main and close moving averages? This is a good thing if that is what the code is telling us in my opinion. I just wanted to make sure i was reading things correctly as written. --------one more Q. Quote:
Cheers, Thom
__________________
Find a way to make someone's day Last edited by accrete; 10-04-2006 at 09:25 PM. |
|
|||
|
Quote:
You looked at the wrong EAs and wrong statements. I've never updating anything on the first post of the thread. May be it is not good but on the first posts of this thread you may see very old EA with very old satements. I am not updating anything on the first post (and asctrend thread as well - nothing was updated on the first post). The most recent EAs and the satements are here and especially here. 4 pairs with modeling quality 90% back to 2001. Please don't use EmaFibo_V2 and EmaFibotf_V2 for now because it was found the bug inside coding (thanks accrete). Last edited by newdigital; 10-05-2006 at 08:03 AM. |
|
|||
|
Quote:
- exit on crossing of SignalEMA and CloseEMA; and (not or) - exit on Stop Loss, take Profit and ts (if StopLossMode = True, TakeProfitMode = True, TrailingStopMode = True). What does it mean? It means that if you set TrailingStopMode = True so EA will close the orders accoding to crossing and Trailing Stop as well (Stop loss value will be moving). Exit of crossing is always "True". But if you set "TrailingStopMode = True" for example so you will have additional possibility for exit. And StopLossMode, TakeProfitMode and TrailingStopMode are working separatedly from each other. For example EA will use trailing stop anyway even if you have the following settings: TrailingStopMode = True; TakeProfitMode = False; StopLossMode = False. In this settings EA will use exit on crossing instead of stop loss and will use trailing stop as well. Any other combination is valid as well. Please note thatn I am talking about EAs posted here and here. |
|
|||
|
Quote:
Sorry. As to Delta so look at the code: Code:
if (Buy1_1 < Buy1_3+(Delta*Point) && Buy2_1 >= Buy2_3+(Delta*Point)) Order = SIGNAL_BUY;
if (Sell1_1 > Sell1_3-(Delta*Point) && Sell2_1 <= Sell2_3-(Delta*Point)) Order = SIGNAL_SELL;
only MainEMA is having Delta. |
|
|||
|
It was EmaFibo_v1 EA.
As I understand accrete was talking about EmaFibo_v2 EA: Code:
if (
(Buy1_1 < Buy1_3 && Buy2_1 >= Buy2_3+Delta*Point)
||
(Buy2_1 > Buy2_3 && Buy2_1 >= Buy2_2+Delta*Point)
) Order = SIGNAL_BUY;
if (
(Sell1_1 > Sell1_3 && Sell2_1 <= Sell2_3)
||
(Sell2_1 < Sell2_3 && Sell2_1 <= Sell2_2-Delta*Point)
) Order = SIGNAL_SELL;
Look at the image attached. I am not really sure that we need this Delta on the second (re-entry) condition. |
|
|||
|
Quote:
As I am not really sure that we need at least one of it so I set the value of Delta1 and Delta2 to 0. Anyway everybody please feel free to change anything inside the code. because I may do some mistake sometimes. |
|
|||
|
I looked at the pre-set files for EmaFibo_v1 EA and compare it to manual trading and found very strange thing: sometimes w have one order already opened but SignalEMA is not crossing CloseEMA yet but crossing MainEMA once again. So do we need to have the possibility to open more than 1 order at the time (MaxOrders = 3;for example)?
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/manual-trading-systems/669-fibonacci_ema.html
|
||||
| Posted By | For | Type | Date | |
| fibonacci forex - forum talks | BoardReader | This thread | Refback | 08-30-2008 06:23 AM | |
| 【MT4】MetaTrader Part12【メタトレーダー】 - MetaTraderまとめWiki | Post #144 | Refback | 07-16-2008 10:19 PM | |
| MT4無料インジケータ | This thread | Refback | 03-01-2008 12:16 PM | |
| 200801 | This thread | Refback | 03-01-2008 05:36 AM | |
| TSDのフォーラムへのリンク | 1万円から目指す原資回復 | This thread | Refback | 02-24-2008 11:34 AM | |
| 無料インジケータダウンロード先 | This thread | Refback | 02-24-2008 08:57 AM | |
| 【MT4】MetaTrader Part8【メタトレーダー】 - MetaTraderまとめWiki | This thread | Refback | 02-16-2008 03:03 AM | |