Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Martingale/Average Cost and Hedging


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

Reply
 
LinkBack (20) Thread Tools Display Modes
  #281 (permalink)  
Old 01-29-2008, 08:20 PM
Senior Member
 
Join Date: Jan 2006
Posts: 1,119
omelette is on a distinguished road
Quote:
Originally Posted by Neo View Post
One of the things I've noticed is that we get further and further away from the goal as more positions are opened as each adds another "spread" to the floating loss which makes the job of catching up progressively harder as price then needs to move much further in a given direction without a reversed entry to have any hope of closing the series.

Not sure how best to overcome this issue but it will blow up the account at some point if left unchecked. This is especially a problem with wide spread pairs like GJ.

I've tried using a very small lot increment and this does help but the account will still blow at some point.

Thinking caps on, guys!
- and these are demos blowing - there is normally an extra pip-per-trade difference with a real account which will only hasten its demise!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #282 (permalink)  
Old 01-29-2008, 10:20 PM
WNW's Avatar
WNW WNW is offline
Senior Member
 
Join Date: Feb 2006
Location: Motown, USA
Posts: 385
WNW is on a distinguished road
Quote:
Originally Posted by wolfe View Post
I'll work on this next. This part will be new for me. Anyone have ideas or examples?
I've attached an EA that uses money management.

You'll want to follow the "Risk" variable (% of account that will determine lot size). Sorry I can't be of more help, my coding skills are pretty limited.
Attached Files
File Type: mq4 JLPiGrid.mq4 (8.0 KB, 30 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #283 (permalink)  
Old 01-29-2008, 10:22 PM
WNW's Avatar
WNW WNW is offline
Senior Member
 
Join Date: Feb 2006
Location: Motown, USA
Posts: 385
WNW is on a distinguished road
As long as you persist in using ANY lot incrementing you'll run into trouble.
Don't use any and widen your grid.

Last edited by WNW; 01-29-2008 at 11:22 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #284 (permalink)  
Old 01-29-2008, 10:45 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,175
matrixebiz is on a distinguished road
I have two identical EA's, except one has Money Management added.
This is the only the code that was added when compared the two;
Code:
extern bool    UseMM  = true;  // 1 = true & 0 = false
extern double  Risk    = 5;    // percent of account equity to risk per trade
and

Code:
   //         ====== Money Management of Lot Size routine ======  

if(UseMM) 
      {
         Lots=AccountEquity()* Risk/100/1000;
         if( Lots>0.1 )
            {
               Lots=NormalizeDouble(Lots,1); 
            }
               else 
               Lots=NormalizeDouble(Lots,2);
      }
Hope it helps

Last edited by matrixebiz; 01-29-2008 at 10:47 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #285 (permalink)  
Old 01-29-2008, 10:51 PM
wolfe's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 719
wolfe is on a distinguished road
Quote:
Originally Posted by Cijas View Post
Found something strange in my live trading (version 1.4 this time) in GBPJPY.

This morning (9:33) EA open a 0.01 buy at 212.25 with NextTrade at 100 pips and SL of 10% and TP of 1 % the

At 14:35 EA open an other buy trade of 0.02 at 213.35.

At 14:48 EA close with profit my first trade (0.01) at a price of 213.40.

Ea only closed this trade not the second trade ?!

At 15:08 EA open a sell trade (0.03) at 212.35.

I am surprise that EA open the second trade (0.02) at 213.35 and not at 213.25 --> i choosed a slippage of 8 pips not 10 ?

I am more surprise that the TP was only for one trade and didn't close all orders.

Do you know why wolfe ?
Cijas,

Could you post the statement to look at? Also, post the trade journal. Were there any errors in the journal?

I'm not too concerned with when your Next_Trade was hit. Next_Trade will execute when current price is >= (greater than, or equal to) your last open + Next_Trade for buys, or <= your last open - Next_Trade for sells. There could be many situations that you won't see your Next_Trade execute exactly on your set parameter. The EA is coded so when your Next_Trade situation is met (could be > for buys, or < for sells) to fire an Ordersend() command. If the server context is busy, re-quoting in a fast moving market, or not responding, the EA will try up to 5 times to put your order through. When the order finally does go through, you may or may not be EXACTLY on your Next_Trade price. GBPJPY with it's high spread, and fast moving volitility, makes it a good candidate NOT to land it's Next_Trade exactly where desired.

A little more concerning to me is why ALL orders didn't close when your 1% TP was met. Out of curiosity, what does 1% work out to.

The EA closes orders by identifying them by their magic number, it doesn't just close ALL open orders because you may have EA attached to more than 1 chart. Each currency pair is assigned it's own magic number for this purpose. In v1_5 (currently working on) I will try to address this issue.

What happened to you is all the orders didn't close, only one did. Then the EA looked at the last order placed (0.2) and when the conditions were met is added to that (0.3). In the next version I will put in some more fail safe measures to try and fix this problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #286 (permalink)  
Old 01-29-2008, 10:53 PM
wolfe's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 719
wolfe is on a distinguished road
Quote:
Originally Posted by WNW View Post
I've attached an EA that uses money management.

You'll want to follow the "Risk" variable (% of account that will determine lot size). Sorry I can't be of more help, my coding skills are pretty limited.
Thanks WNW, I'll check this out when I get home tonight. Should help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #287 (permalink)  
Old 01-29-2008, 10:57 PM
wolfe's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 719
wolfe is on a distinguished road
Quote:
Originally Posted by matrixebiz View Post
I have two identical EA's, except one has Money Management added.
This is the only the code that was added when compared the two;
Code:
extern bool    UseMM  = true;  // 1 = true & 0 = false
extern double  Risk    = 5;    // percent of account equity to risk per trade
and

Code:
   //         ====== Money Management of Lot Size routine ======  

if(UseMM) 
      {
         Lots=AccountEquity()* Risk/100/1000;
         if( Lots>0.1 )
            {
               Lots=NormalizeDouble(Lots,1); 
            }
               else 
               Lots=NormalizeDouble(Lots,2);
      }
Hope it helps
Thanks matrixebiz,

Shouldn't be too hard to figure out.

Everyone realizes that MM will only effect the first order of a cycle right?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #288 (permalink)  
Old 01-29-2008, 11:01 PM
wolfe's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 719
wolfe is on a distinguished road
Quote:
Originally Posted by Neo View Post
One of the things I've noticed is that we get further and further away from the goal as more positions are opened as each adds another "spread" to the floating loss which makes the job of catching up progressively harder as price then needs to move much further in a given direction without a reversed entry to have any hope of closing the series.

Not sure how best to overcome this issue but it will blow up the account at some point if left unchecked. This is especially a problem with wide spread pairs like GJ.

I've tried using a very small lot increment and this does help but the account will still blow at some point.

Thinking caps on, guys!

I agree with your statements Neo.

There needs to be some additional strategy put into play here.

Who has a possible solution?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #289 (permalink)  
Old 01-29-2008, 11:13 PM
Junior Member
 
Join Date: Oct 2007
Posts: 10
Almos is on a distinguished road
Quote:
Originally Posted by wolfe View Post
I agree with your statements Neo.

There needs to be some additional strategy put into play here.

Who has a possible solution?

What if starting the trades in hedged form (I guess who uses this EA, TakeProfit is lower than the Next Trade parameter and this causes the main "getstuck"-problem).
So two "lines" would run at the same time. First starts with buy, second with sell. If one starts struggling in Buys-Sells, the second takes a win until that time.
And somehow maybe they could be optimised to each other (CloseAllTrades). Just an idea. Would it work?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #290 (permalink)  
Old 01-29-2008, 11:17 PM
ElectricSavant's Avatar
Senior Member
 
Join Date: Jun 2007
Posts: 3,010
ElectricSavant is on a distinguished road
I am waiting for the directional input to be in v1.5, where I can specify Long or Short as the initial opening (Then use long only or short only in conjunction with this)...Then I am going to use some indicator to give me a bias and use close-all and autorestart to false...with a basket of four non correlated pairs.

I may or may not utilize increments...I have not decided yet...I will prolly' test with increments first...

ES
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
martingale, martingale ea, martingale EA, martingale ea download

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/martingale-average-cost-hedging/11734-martingale-ea.html
Posted By For Type Date
ea - learn to trade forex swicki - powered by eurekster This thread Refback 06-05-2008 06:34 PM
[intraday]martingale strategy dan variasinya - Page 6 - Forexindo Forum This thread Refback 04-04-2008 03:15 AM
TFX v1.5 Expert Adviser - The Money Guru Forum - Money Making Discussions This thread Refback 03-31-2008 05:36 PM
Download 10points3 Ea - Type Your Search Here This thread Refback 03-12-2008 01:38 AM
Expert Advisor | Forex MetaTrader Expert Advisors | Over 40 of the Best EA's for MT4 on Squidoo This thread Refback 03-08-2008 08:36 PM
Expert Advisor | Forex MetaTrader Expert Advisors | Over 40 of the Best EA's for MT4 on Squidoo This thread Refback 03-07-2008 07:27 AM
Expert Advisor | Forex MetaTrader Expert Advisors | Over 40 of the Best EA's for MT4 on Squidoo This thread Refback 03-07-2008 03:27 AM
Expert Advisor | Forex MetaTrader Expert Advisors | Over 40 of the Best EA's for MT4 on Squidoo This thread Refback 03-05-2008 01:56 AM
Bright Idea's :: View topic - TFX Public EA Thread (work in progress) This thread Refback 02-29-2008 01:05 PM
Martingale Baggio Method - Page 11 This thread Refback 02-27-2008 09:59 PM
Martingale Baggio Method - Page 11 This thread Refback 02-27-2008 05:07 PM
Martingale Baggio Method - Page 11 This thread Refback 02-27-2008 05:04 PM
Martingale Baggio Method - Page 10 This thread Refback 02-25-2008 06:50 PM
Martingale Baggio Method - Page 10 This thread Refback 02-25-2008 06:07 PM
Martingale Baggio Method - Page 10 This thread Refback 02-25-2008 06:05 PM
Bright Idea's :: View topic - TFX Public EA Thread (work in progress) This thread Refback 02-23-2008 07:38 PM
Bright Idea's :: View topic - TFX Public EA Thread (work in progress) This thread Refback 02-04-2008 06:15 AM
Bright Idea's :: View topic - TFX Public EA Thread (work in progress) This thread Refback 02-03-2008 05:01 AM
Bright Ideas™ » TFX (an amazing EA) This thread Refback 01-15-2008 06:26 PM
World of Forex Trading » Martingale EA This thread Pingback 01-11-2008 02:33 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Martingale Trend EA criss73 Expert Advisors - Metatrader 4 8 11-20-2008 02:56 AM
Reversed martingale mrv Expert Advisors - Metatrader 4 6 07-26-2007 01:28 AM
Leverage for martingale frantacech Expert Advisors - Metatrader 4 0 05-22-2007 02:17 PM
Martingale EAs? icepeak Expert Advisors - Metatrader 4 5 01-18-2007 03:21 AM
Martingale EA newdigital Expert Advisors - Metatrader 3 2 05-23-2006 03:42 PM


All times are GMT. The time now is 08:44 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.