Thread: Martingale EA
View Single Post
  #66 (permalink)  
Old 01-14-2008, 11:01 PM
guess121 guess121 is offline
Junior Member
 
Join Date: Jul 2007
Posts: 3
guess121 is on a distinguished road
hi wolfe...

this is the exact EA that I have been looking... you are a god send!!!

thank you very much!

could you please do me a favour and modify the code to do the following, as I see everything else is in place.

1. i want the ea to have a start time and a end time, so the ea starts at a specific time and closes all trades at a specific time and true or false feature to use this feature.

2. based on the TP and SL the order is gone in the direction of E/MA that you already have in place, but say if the TP hit, then the EA closes off and shutdowns for the day, if you are using the timeframe feature set to true, then the EA starts again tomorrow at that time and does all the same again. If you do not hit TP and hit SL, then the order via MM that you already have, lot size doubles and the trade goes in the direction the EA got stopped out based on the first trade SL and TP again and it does this until either MAX TRADE hit or end time or TP hit and then the EA closes down and starts again tomorrow.

this is what i think works, I have been back testing and if correctly used, this will win most of the time.

if you could do this, i hope... then thank you much!!!!

regards,
guess

Quote:
Originally Posted by wolfe View Post
A few days ago I received a PM to code an EA with the following parameters:

-User decides initial trade direction (let's say long) and starting lot size (say .1 lot)
-New position would be added every time the market moves x pips (say 10 pips) up or down away from the most recent position taken. If market moves up from the original position 10 pips a new long is added. If the market moves down 10 pips from the last position a short is added (basically following the market looking to catch a trend in either direction).
-Each new position size increased by x (ex: .1 lot)
-Take profit based on account %
-Stop loss based on account %
-Max number of standard lots before EA can't taken any new positions (at this point the T/P or S/L will need to be hit when max is reached)
-Re-enter mode would start a new progression again once the prior progression has ended do to T/P or S/L being hit
-Magic number to run on multiple pairs

I did my best to code such an EA.

The expert I made uses a .mqh file that must be saved in your include folder.
The expert WILL NOT function without it.

All are welcome to critique or improve the code I wrote. PLEASE read ALL the comments in the code to understand the external variables. Default settings are just a guess, testing and optimization needs to be performed.

I'm not sure if this strategy is viable, these type of experts can get you into trouble quick! So use for testing only!

The EA starts by using a EMA for initial long or short starting direction. Just an idea. Maybe someone has a better idea?

Enjoy.
Reply With Quote