Multi 10:4 Trader EA
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
Re: Multi 10:4 Trader EA
Thank You MrLong
-
Wkcfx
- Trader
- Posts: 48
- Joined: Sun Feb 17, 2013 6:25 am
Re: Multi 10:4 Trader EA
Thanks very much MrLong
- slipshod
- Trader
- Posts: 404
- Joined: Tue Dec 27, 2011 9:14 am
- Location: Australia
Re: Multi 10:4 Trader EA
Hi Andy, might I suggest an alternative to the hardcoded pip values in the EA such as maBufferPips, maOuterBufferPips and BufferPips?
The problem is that not all pairs will move the same amount, so what might be a great value for one pair is totally unsuitable for another. For instance, 400 pips is a good value for something like NZDUSD, but for XAUUSD its only $40, which it can reach pretty quickly. If this EA only worked on one pair then it wouldn't be a problem as you'd set the values according to the pair's volatility, but it works across many pairs so it is an issue.
Instead a multiple of ATR might be much more effective. I haven't yet worked out what the default values should be to replace the hardcoded ones, but I'll look into it later today.
The problem is that not all pairs will move the same amount, so what might be a great value for one pair is totally unsuitable for another. For instance, 400 pips is a good value for something like NZDUSD, but for XAUUSD its only $40, which it can reach pretty quickly. If this EA only worked on one pair then it wouldn't be a problem as you'd set the values according to the pair's volatility, but it works across many pairs so it is an issue.
Instead a multiple of ATR might be much more effective. I haven't yet worked out what the default values should be to replace the hardcoded ones, but I'll look into it later today.
-
MrLong
Re: Multi 10:4 Trader EA
Hello slipshod,slipshod wrote:Hi Andy, might I suggest an alternative to the hardcoded pip values in the EA such as maBufferPips, maOuterBufferPips and BufferPips?
The problem is that not all pairs will move the same amount, so what might be a great value for one pair is totally unsuitable for another. For instance, 400 pips is a good value for something like NZDUSD, but for XAUUSD its only $40, which it can reach pretty quickly. If this EA only worked on one pair then it wouldn't be a problem as you'd set the values according to the pair's volatility, but it works across many pairs so it is an issue.
Instead a multiple of ATR might be much more effective. I haven't yet worked out what the default values should be to replace the hardcoded ones, but I'll look into it later today.
You are absolutly correct, That was my next next move, I was looking at a way of gauging what the average pullback of each pair was, then use that figure for the outer level.
I look forward to your idea's.
Many Thanks
Andy
-
Logs
- Trader
- Posts: 14
- Joined: Sun Nov 27, 2011 5:38 am
- Location: Queensland
Re: Multi 10:4 Trader EA
Thank you Mr Long, the problem with the hieroglyphics seems to have been resolved in V1.07
The Dash is very impressive.
Kudos to you.
The Dash is very impressive.
Kudos to you.
-
MrLong
Re: Multi 10:4 Trader EA
Hi,slipshod wrote:Hi Andy, might I suggest an alternative to the hardcoded pip values in the EA such as maBufferPips, maOuterBufferPips and BufferPips?
The problem is that not all pairs will move the same amount, so what might be a great value for one pair is totally unsuitable for another. For instance, 400 pips is a good value for something like NZDUSD, but for XAUUSD its only $40, which it can reach pretty quickly. If this EA only worked on one pair then it wouldn't be a problem as you'd set the values according to the pair's volatility, but it works across many pairs so it is an issue.
Instead a multiple of ATR might be much more effective. I haven't yet worked out what the default values should be to replace the hardcoded ones, but I'll look into it later today.
These numbers look good:
maOuterBufferPips = GetOuterBuff(CurrentPair, 2.00);// outer parameter ADR X 2
maBufferPips = GetOuterBuff(CurrentPair, 0.25);// Inner parameter ADR X 0.25
BufferPips = GetOuterBuff(CurrentPair, 0.05);// Buffer Pips ADR X 0.05
I'm just testing now.
Andy
-
AGT
- Trader
- Posts: 889
- Joined: Thu Nov 17, 2011 7:20 pm
- Location: Germany
Re: Multi 10:4 Trader EA
Running the new bot:
https://www.myfxbook.com/portfolio/104- ... -gp/509003
So far only 2 trades, 2 loosers, broker: Global Prime, Set: nearly OOTB (changed the risk from 2 to 1 %)
https://www.myfxbook.com/portfolio/104- ... -gp/509003
So far only 2 trades, 2 loosers, broker: Global Prime, Set: nearly OOTB (changed the risk from 2 to 1 %)
AGT's EA portfolio: http://www.stevehopwoodforex.com/phpBB3 ... =36&t=1374
-
Fourxxxx
Re: Multi 10:4 Trader EA
Your link results in this "You cannot access someone else's portfolio. If this is your portfolio, please login first. "AGT wrote:Running the new bot:
https://www.myfxbook.com/portfolio/104- ... -gp/509003
So far only 2 trades, 2 loosers, broker: Global Prime, Set: nearly OOTB (changed the risk from 2 to 1 %)
- Sojourner
- Trader
- Posts: 105
- Joined: Fri Apr 27, 2012 7:36 pm
Re: Multi 10:4 Trader EA
currently in two trades with version 7 eurchf and gbpaud.
- slipshod
- Trader
- Posts: 404
- Joined: Tue Dec 27, 2011 9:14 am
- Location: Australia
Re: Multi 10:4 Trader EA
You beat me to it, I've had a busier day than I'd expected. ADR makes a lot more sense to use than ATR, and I guess those values are as good as any for a starting point.MrLong wrote: These numbers look good:
maOuterBufferPips = GetOuterBuff(CurrentPair, 2.00);// outer parameter ADR X 2
maBufferPips = GetOuterBuff(CurrentPair, 0.25);// Inner parameter ADR X 0.25
BufferPips = GetOuterBuff(CurrentPair, 0.05);// Buffer Pips ADR X 0.05
I'm just testing now.
The EA for me had a host of trades running & at one point had an equity 7% higher than the balance, but the market seems to have changed direction with none hitting their TP and one stopping out. The losing trade was a Sell on EURJPY, which it entered at 123.456 with a TP at 119.606. With the price now 123.349 you'd think this'd be still running and in profit - the problem was that the SL was very close at 123.610, only 15 pips from the entry. This is contrary to the philosophy of 10.4 having wide stops, leading me to wonder how the stop-loss levels are calculated & how it could have gotten this one so wrong. I'll hopefully have time to look at the code tomorrow.
Btw I've tried backtesting, following the instructions given earlier in the thread, but no trades are ever placed. In visual mode the user interface just shows the frame with no text inside. Any ideas on what the cause might be?