Jump to content

Forex Derivative EA


Recommended Posts

  • Replies 248
  • Created
  • Last Reply

Top Posters In This Topic

Re: REQ: forex derivative EA

 

Check forward test using Alpari UK demo account here

http://www.4xproject.com/statements/derivative/statement.htm

 

I naively put this on my live account on GBPUSD and EURUSD.. hm.. so far not so good.. :(

hm.. I think we should wait for a few more weeks to see how it performs in forward test :evil:

I wonder why 4xProject gets so many trades executed and the results are totally different from mine (only 6 trades). The difference in datafeed between Alpari & FX Clearing would not make that big deal. Anyone has other forward test result?

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

I wonder why 4xProject gets so many trades executed and the results are totally different from mine (only 6 trades). The difference in datafeed between Alpari & FX Clearing would not make that big deal. Anyone has other forward test result?

 

I am using Alpari demo but I only have GBPUSD (1 trade) and EURUSD trades (3 trades), none for AU nor CAD. So far all EURUSD exited with positve pips, but GBPUSD is still floating. I am equally surprised with 4xProject's results as well.

 

Regards,

Collin

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi Guys,

 

This is the EA FD with Trailing stop.

 

Try it and let us know about your results: http://www.mediafire.com/download.php?jvo1wymk24z

 

Good luck,

 

Best wishes,

 

Scarface

Scarface, thank you for educating the EA. Can you also post the 'uneducated' source, as decompiled from the original? There seem to be a big difference in results between the original EA and the 'educated' (with no trailing) one. For GU on one of my tests, for example:

 

the original EA: +6800 (38 trades) vs +3473 (24 trades) from "educated" one, for the period April-May09.

 

Thanks

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi Guys,

 

This is the EA FD with Trailing stop.

 

Try it and let us know about your results: http://www.mediafire.com/download.php?jvo1wymk24z

 

Good luck,

 

Best wishes,

 

Scarface

Have run backtest on Alpari uk with trail set to false and then trail set to true.Results are the same ??????Does this mean that trailing does not work?

Also backtest on original version as sold seems to always do better in a backtest than the educated versions

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi Guys,

 

This is the EA FD with Trailing stop.

 

Try it and let us know about your results: http://www.mediafire.com/download.php?jvo1wymk24z

 

Good luck,

 

Best wishes,

 

Scarface

Have run backtest on Alpari uk with trail set to false and then trail set to true.Results are the same ??????Does this mean that trailing does not work?

Also backtest on original version as sold seems to always do better in a backtest than the educated versions

 

Thanks for your post.

 

Actually as I've seen the in backtest that the EA tries to reach a max profit by entering only strong positions for either buy or sell. so whether you used the trailing stop or not it won't make big difference except that you would loss some pips lower what the EA will try to reach.

 

In conclusion, I find the EA is v.good without trailing stop even there are only few trades everyday.

 

By the way, this EA is not good on GBPUSD, but only EURUSD and AUD/USD. Try to avoid GBP/USD because it is very fast in breaking trending so the EA get the wrong signal to buy or sell.

 

By the way, if you turned off the "Trail" property in the modified EA I uploaded it would work exactly the same as the original.

 

I will post the results for the EA I modified and compare it with your results guys.

 

Take care.

 

Best wishes,

 

Scarface

a New Year 2011 has come, and the challenge has just started 8-)
Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

if (MoneyManagement == FALSE) {
        ld_ret_152 = FixLotSize;
        if (ai_24 != 0) return (???);
        if (!(AccountFreeMarginCheck(Symbol(), a_cmd_20, ld_ret_152) <= 0.0 || GetLastError() == 134/* NOT_ENOUGH_MONEY */)) return (???);
        ld_ret_152 = 0;
        return (0);
     }

 

what's with the return(???)

Indo-Investasi Rocks
Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Scarface would it be possible to add a global stoploss ?

 

and ability to vary money management amount, at the moment its gets its formular from your account balance, but if using multiple eas you would want to limit the money management percentage,

 

tnx zoop

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

if (MoneyManagement == FALSE) {

ld_ret_152 = FixLotSize;

if (ai_24 != 0) return (ld_ret_152 );

if (!(AccountFreeMarginCheck(Symbol(), a_cmd_20, ld_ret_152) <= 0.0 || GetLastError() == 134/* NOT_ENOUGH_MONEY */)) return (ld_ret_152);

ld_ret_152 = 0;

return (0);

}

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi Guys,

 

It seems that there is a lack of understanding for the MQL4 language. If you already could understand this long code for this EA, that means you are an expert in programming. And if not, you can ask any programmer here around in this great forum.

 

I've made backtest for both versions: the original version and the version that I added a trailing stop to.

 

Both tests are identical; this is to prove that I didn't touch anything in the code, but adding a short code for trailing stop, which by the way I suggested for instance and it turned out that the EA calculate its max profit through the logic in the EA.

 

For those who asked to add Stop Loss, there is no need as well because in the code itself there is an algorithm for Stop Loss calculation and a hedge property has been installed by the author "creator" to substitute or compensate any losing trade.

 

Here is the backtest for the EA with Trailing function "False": http://www.mediafire.com/download.php?z0ymqzmtgy2

 

The backtest for the EA without Trailing function: http://www.mediafire.com/download.php?tynn0zjfjyw

 

And this is a backtest for the EA with trailing function "False" without MM and lot =5:

http://www.mediafire.com/download.php?zvd5qmrnm1n

 

if you have any question about that, please let me know ASAP. I will be glad to help.

 

Best wishes,

 

Scarface

a New Year 2011 has come, and the challenge has just started 8-)
Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi Guys,

 

It seems that there is a lack of understanding for the MQL4 language. If you already could understand this long code for this EA, that means you are an expert in programming. And if not, you can ask any programmer here around in this great forum.

 

I've made backtest for both versions: the original version and the version that I added a trailing stop to.

 

Both tests are identical; this is to prove that I didn't touch anything in the code, but adding a short code for trailing stop, which by the way I suggested for instance and it turned out that the EA calculate its max profit through the logic in the EA.

 

For those who asked to add Stop Loss, there is no need as well because in the code itself there is an algorithm for Stop Loss calculation and a hedge property has been installed by the author "creator" to substitute or compensate any losing trade.

 

Here is the backtest for the EA with Trailing function "False": http://www.mediafire.com/download.php?z0ymqzmtgy2

 

The backtest for the EA without Trailing function: http://www.mediafire.com/download.php?tynn0zjfjyw

 

And this is a backtest for the EA with trailing function "False" without MM and lot =5:

http://www.mediafire.com/download.php?zvd5qmrnm1n

 

if you have any question about that, please let me know ASAP. I will be glad to help.

 

Best wishes,

 

Scarface

 

 

Is this EA compatible with MRKT Execution from ECn brokers?

If not, could anybody please change the code?

Thanks :peace:

Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi.

 

This is EA is only working on MT4 platform. And if you like to re-code it for another type of platform you can make new topic and request it from the programmers in this great forum.

 

don't forget to write [Req] in your topic so people here can help you out.

 

Good luck.

a New Year 2011 has come, and the challenge has just started 8-)
Link to comment
Share on other sites

Re: REQ: forex derivative EA

 

Hi.

 

This is EA is only working on MT4 platform. And if you like to re-code it for another type of platform you can make new topic and request it from the programmers in this great forum.

 

don't forget to write [Req] in your topic so people here can help you out.

 

Good luck.

 

Well, I meant MT4 ECN platforms with mrkt execution.

On mrkt execution brokers you have to open the order with no SL and TP, and as soon as the order is opened, you place (modify) SL and TP.

:arrow:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...