⭐ birt Posted September 13, 2009 Report Share Posted September 13, 2009 Re: Fractals4 -- new Fractals from Fx H0pe If you're forward testing Fractals4 or Thunderbolt, you should be aware of a severe bug found by clovelly. The EA does NOT check the symbol of the order so unless you change the magic numbers for each pair, it will happen that e.g. your EURUSD EA will close the EURGBP orders. So, make sure that you use different magic numbers for each pair. Quote Link to comment Share on other sites More sharing options...
hyperdimension Posted September 13, 2009 Report Share Posted September 13, 2009 Re: Fractals4 -- new Fractals from Fx H0pe The EA does NOT check the symbol of the order so unless you change the magic numbers for each pair, it will happen that e.g. your EURUSD EA will close the EURGBP orders.I checked the Fractals 4 live test:fractals4.mt4live.comand there are no cases where different order symbols have the same close time. So maybe they themselves used different magic numbers. Quote Link to comment Share on other sites More sharing options...
saendee Posted September 13, 2009 Report Share Posted September 13, 2009 Re: Fractals4 -- new Fractals from Fx H0pe ^:)^ I have checked my demo account & found 1 yes + 1 to close 18second later both in loss from the 2 winning trades neither hit SL :shand: I have changed all my magic# =D> Quote Link to comment Share on other sites More sharing options...
saendee Posted September 13, 2009 Report Share Posted September 13, 2009 Re: Fractals4 -- new Fractals from Fx H0pe :-? I could only check gotrader because my other 2 demo accounts I had to open new account could that explain why members have been saying only forward test accounts showing continue profit is fractal4 account I can remember about 3 weeks ago 1 off demo lost for week not much but fxh**pe showed profit :-? :shand: Quote Link to comment Share on other sites More sharing options...
omegaphenix Posted September 19, 2009 Report Share Posted September 19, 2009 Re: Fractals4 -- new Fractals from Fx H0pe This is Fractals4 Forward Test from user. Broker=FxPro demo,FxHope Recommended Settings,ALL Pairs,From 2009/09/11 h**p://fractals-ulphe.mt4livedotcom/ Quote Link to comment Share on other sites More sharing options...
⭐ birt Posted September 19, 2009 Report Share Posted September 19, 2009 Re: Fractals4 -- new Fractals from Fx H0pe While it seemed not so bad initially, this EA totally failed for me. I'm stopping my forward tests, after almost a month one is at -18% and the other at -8%. It's mostly because of bad programming and the EA closing the orders for the wrong currency pair, but even without that it's not really profitable from what I can see. I totally fail to see how come it's profitable in their forward test. I decided to just give up on it for now, until some independent reviewer is posting some positive results. Quote Link to comment Share on other sites More sharing options...
taltek Posted September 21, 2009 Report Share Posted September 21, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Last weeks I has started the test for a demo (ver. 909). EURUSD 24 pip (prof) - 76 pip (loss) = -52 pip GBPUSD 103 pip (prof) - 0 pip (loss) = +103 pip EURGBP 0 pip (prof) - 121 pip (loss) = -121 pip Still there were open transactions: GBPUSD +61 pip EURGBP +361 pip I Think Early for the conclusion. Quote Link to comment Share on other sites More sharing options...
eusanka Posted September 22, 2009 Report Share Posted September 22, 2009 Re: Fractals4 -- new Fractals from Fx H0pe If you're forward testing Fractals4 or Thunderbolt, you should be aware of a severe bug found by clovelly. The EA does NOT check the symbol of the order so unless you change the magic numbers for each pair, it will happen that e.g. your EURUSD EA will close the EURGBP orders. So, make sure that you use different magic numbers for each pair. Where in the code can you find those bugs with magic numbers that are not taken into the consideration for other pairs? Can you maybe show and code example? Quote Link to comment Share on other sites More sharing options...
⭐ birt Posted September 22, 2009 Report Share Posted September 22, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Where in the code can you find those bugs with magic numbers that are not taken into the consideration for other pairs? Can you maybe show and code example? Example: l_ord_total_0 = OrdersTotal(); for (int l_pos_4 = l_ord_total_0 - 1; l_pos_4 >= 0; l_pos_4--) { OrderSelect(l_pos_4, SELECT_BY_POS); l_cmd_8 = OrderType(); if (l_cmd_8 == OP_BUY && OrderMagicNumber() == gi_928 && OrderProfit() + OrderSwap() + OrderCommission() > 0.0) { ld_12 = OrderProfit() + OrderSwap() + OrderCommission(); if (li_20 == 0) li_24 = li_24 + ld_12; } } As you can see, only the magic is checked here, not also the symbol. It should read: ...OrderMagicNumber() == gi_928 && OrderSymbol() == Symbol() && OrderProfit() + ... Basically, all checks of OrderMagicNumber() without an OrderSymbol() check are buggy, unless the author wanted to count all the open orders, which there's no reason to in the case of this EA. Quote Link to comment Share on other sites More sharing options...
eusanka Posted September 22, 2009 Report Share Posted September 22, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Example: l_ord_total_0 = OrdersTotal(); for (int l_pos_4 = l_ord_total_0 - 1; l_pos_4 >= 0; l_pos_4--) { OrderSelect(l_pos_4, SELECT_BY_POS); l_cmd_8 = OrderType(); if (l_cmd_8 == OP_BUY && OrderMagicNumber() == gi_928 && OrderProfit() + OrderSwap() + OrderCommission() > 0.0) { ld_12 = OrderProfit() + OrderSwap() + OrderCommission(); if (li_20 == 0) li_24 = li_24 + ld_12; } } As you can see, only the magic is checked here, not also the symbol. It should read: ...OrderMagicNumber() == gi_928 && OrderSymbol() == Symbol() && OrderProfit() + ... Basically, all checks of OrderMagicNumber() without an OrderSymbol() check are buggy, unless the author wanted to count all the open orders, which there's no reason to in the case of this EA. This is mostlikly a bug... Thanks for the explanation:) Another question that you might can answer, what does the FRACTALS1-5 function calls do in the dll? I can see that FRACTALS5 is for example used before an entry is opened for breakout. You send in 7 arguments and as response you get an integer.... Quote Link to comment Share on other sites More sharing options...
⭐ birt Posted September 22, 2009 Report Share Posted September 22, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Another question that you might can answer, what does the FRACTALS1-5 function calls do in the dll? I can see that FRACTALS5 is for example used before an entry is opened for breakout. You send in 7 arguments and as response you get an integer.... I have no idea what it does and it's not worth the time to check it out. It probably calculates whether it's got an entry signal based on the 7 arguments. Quote Link to comment Share on other sites More sharing options...
DH2002 Posted October 1, 2009 Report Share Posted October 1, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Fractals4 is confirmed copycat version of GomegaXray + Some scalping functions from BankingFX. Quote Link to comment Share on other sites More sharing options...
eusanka Posted October 2, 2009 Report Share Posted October 2, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Fractals4 is confirmed copycat version of GomegaXray + Some scalping functions from BankingFX. When you say confirmed, on what grounds are you bulding this on? Quote Link to comment Share on other sites More sharing options...
DH2002 Posted October 3, 2009 Report Share Posted October 3, 2009 Re: Fractals4 -- new Fractals from Fx H0pe Just get your self a copy of Gomega Xray v1453 and compare these function CheckTimes(), OpenPsn(), CountOpenTrades(), Entry(), IsHook(). For BankingFX, SyaratProfit1(), SyaratProfit2() and ValidTradingTime() --are just codes from BankingFX line-by-line with the author just splitting it into VT1(), VT2(), VT3(), VT4() and VT5(). Quote Link to comment Share on other sites More sharing options...
heikobear Posted August 9, 2010 Report Share Posted August 9, 2010 I have the original version and making money with it. The secret is to concentrate on low volatility trades (scalping). I took some time for me to figure that out as the scalping function is an additional mode. My live account is up 110% in 2 months mainly through the scalping trades. My demo account, which only trades the scalping feature is up 120% with a much smoother equity curve. The 4h chart trades depending on the market conditions produce some bad trades. I believe it would be much better on 1H charts. Does anybody have a mq4 version in order to figure out the scalping strategy? May be this EA can be further improved with NN technology. Quote Link to comment Share on other sites More sharing options...
hawkfx Posted August 9, 2010 Report Share Posted August 9, 2010 How do you activate the scalping startegy? I have the original version and making money with it. The secret is to concentrate on low volatility trades (scalping). I took some time for me to figure that out as the scalping function is an additional mode. My live account is up 110% in 2 months mainly through the scalping trades. My demo account, which only trades the scalping feature is up 120% with a much smoother equity curve. The 4h chart trades depending on the market conditions produce some bad trades. I believe it would be much better on 1H charts. Does anybody have a mq4 version in order to figure out the scalping strategy? May be this EA can be further improved with NN technology. Quote Link to comment Share on other sites More sharing options...
heikobear Posted August 16, 2010 Report Share Posted August 16, 2010 How do you activate the scalping startegy? In the settings, check "Enable Low Volatility trades" Quote Link to comment Share on other sites More sharing options...
wawno Posted August 16, 2010 Report Share Posted August 16, 2010 another thing to download from there. http://forexh0pe*com/memberarea/download.php?id=21 http://forexh0pe*com/memberarea/download.php?id=24 :) Quote Link to comment Share on other sites More sharing options...
acosma Posted August 16, 2010 Report Share Posted August 16, 2010 Hi heikobear, i don't see "Enable Low Volatility trades" check on fractals 4 parameters. are you using on other version of fractals ? Quote Link to comment Share on other sites More sharing options...
heikobear Posted August 17, 2010 Report Share Posted August 17, 2010 Hi heikobear, I don't see "Enable Low Volatility trades" check on fractals 4 parameters. are you using on other version of fractals ? The latest version is 911. I downloaded the version 907 from this post and indeed this setting is not available though there is "aggressive setting" which makes part of the low volatility strategy. Maybe it is better to buy the original....on forexbling you can buy Fractals4 for USD 99 if you subscribe for 3 months. Now there are two scalping strategies among others. Actually pretty interesting. If someone can educate the latest version 911 I could upload it for you. Quote Link to comment Share on other sites More sharing options...
shag1 Posted August 20, 2010 Report Share Posted August 20, 2010 Is there a password for the files? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.