| stevehopwoodforex.com https://www.stevehopwoodforex.com/phpBB3/ Print view |
|
| Multi 10:4 Trader EA https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=1619 |
Page 20 of 160 |
| Author: | slipshod [ Tue Mar 19, 2013 11:25 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Ok I can see that the stoploss is simply set to the moving average. When the MA is close to the price then tight stops will be set & losses taken like the one I saw. When the price decides to whipsaw across the MA in a ranging period the losses could be very high indeed. May I suggest another value, StopBufferPips, set to ADR * 1 (with 1 being a user-definable value)? When the MA is further from the price then it'd be used to set stops, otherwise StopBufferPips would be used to prevent stops that are dangerously tight. Btw, if UseMovingAverage is set to false, no stop would be set at all & the CalculateStopLoss function would return an unintialised value... |
|
| Author: | MrLong [ Tue Mar 19, 2013 11:29 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
At what level is your MA 240, they seem to be different from broker to broker? My MA is at: EURJPY,H4, MA(240) 123.653 Weekly Mid Support 1 124.30 Weekly Mid Resistance 1 125.29 Weekly Mid Support 2 123.31 Weekly Mid Resistance 2 126.28 Weekly Mid Support 3 122.32 Weekly Mid Resistance 3 127.27 Weekly Pivot Point 124.87 Weekly Support 1 123.72 Weekly Resistance 1 125.70 Weekly Support 2 122.89 Weekly Resistance 2 126.86 Weekly Support 3 121.74 Weekly Resistance 3 127.68 |
|
| Author: | slipshod [ Tue Mar 19, 2013 11:34 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
On EJ right now my MA 240 is at 123.780. Using Cowboy IBFX - it'll probably differ slightly for each broker based on how many Sunday candles they show. On my local copy I've set an extern int StopBufferPips = 80 (as my version still has fixed values), and I've changed the code in CalculateStopLoss() as follows:- Code: Select all |
|
| Author: | mjws00 [ Tue Mar 19, 2013 3:29 pm ] |
| Post subject: | Re: Multi 10:4 Trader EA |
I think we'll need to take a look at TrendDirect() as well. If useBothForPullback is enabled. We get very strong trades, but miss pullbacks where AO doesn't get over the zero line. This happens often. i.e AO only pulls back partially, but stoch which is the primary signal is saying the reversal is valid. If disabled, we get triggered anytime AO is above or below zero due to the "OR" which is not a valid setup. This occurs even when stochastic, which is the primary trigger, is overbought or oversold in the wrong direction. I might be wrong, it was late while I was testing. But over half the pendings I checked last night were invalid. The hyper conservative useBoth, is safe but will miss trades. Fastest way to confirm and eyeball it is one of the dashboards. For example EURCAD is currently a valid 10.4 setup to place pendings, AO which is really just for confirmation after the fact is no where near above zero and likely won't be on this swing. The auto position sizing close to the 240 is also a killer as it conveniently boosts the size when we are most likely to get stopped out. This makes losses difficult to overcome. It is as per the rules. But the lesser position size of say 100pip stop (ATR) or the distance to the 240 is much safer and doesn't increase size dramatically in the danger zone. Hope that makes sense. I've included a picture to clarify... My hack isn't ready for primetime or I'd have posted code to help. Sorry. I pretty much just removed AO but maintained stoch integrity. Also killed TP as the R1/S1 model assumes you have knowledge of where you are placing the pending at the time, it is not universal as WP may be away from price action. For me it is a non issue as I just want a solid entry, and then will manage the trade. For hands-off operation, or testing, exits will need work. I love the creativity in the correlation idea (but haven't seen tested it successfully). Bob has left that area full of discretion as the intent is manual. AO change to get out is poor and late, using only stoch reversal can kill runners. Most of my simple to code ideas leave too much money on the table compared to my eye. Sorry for the novel. I've had good success with 10.4 manually. But it has its quirks as do all systems. Mike |
|
| Author: | och [ Tue Mar 19, 2013 4:29 pm ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Dear all, I start yesterday a demo on a VPS using 1.07 and not changing any of the settings : http://www.myfxbook.com/members/och_/mt ... der/518400 |
|
| Author: | MrLong [ Tue Mar 19, 2013 5:21 pm ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Hi Mike, Thanks for you feedback, I know useBothForPullback is not part of the 10.4 strategy, I just added it as an option because the idea seemed good. We could add some code to reduce the lot size near to the MA. The correlation stuff I have been using for quite a while to confirm entries, but because of the stop orders, I haven't done anything in this strategy, we could place the stop orders if we have the D1 correlations on our side, I do know if you are in a trade and those daily correlated pairs start to get high numbers like > 5 going in the opposite direction, the trade will get stopped, that same thing is good to confirm a trade and I think it could work well with DC's Forex Robot. Andy |
|
| Author: | TraderDesk [ Wed Mar 20, 2013 6:16 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
MrLong, great work on developing this EA. I have been running 1.07 since it came out on OOB settings to spot weaknesses with the model. As you and others have iterated pending positions put near the 240ma is incurring massive draw-downs for several reasons. Problem is the size of the position being relative to the S/L and 240ma. That has to changed where it is either fixed and/or when pending is within a certain distance of 240ma the EA can use another S/L level like weekly mid-pivot support/resistance level. In my manual trading I have done this and found it helps to keep me in the profit. Or allow the EA to disregard setting pending positions when Price is within a certain distance of the 240ma. I am sure you are looking into this already as I had read in previous posts, just wanted to highlight my experience so far. Great work guys.... |
|
| Author: | MrLong [ Wed Mar 20, 2013 7:36 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Hi TD, Thanks for your feedback, I've taken care of the large lot size near the MA, we now have a setting where below a specified pips distance from the Ma, we can reduce our lot size to traders own setting, like 0.05 or whatever. Thanks Andy |
|
| Author: | TraderDesk [ Wed Mar 20, 2013 8:10 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Will this be in 1.08 and if so when will you post it? Or is this a code snippet I will need to add to 1.07? Thanks.. |
|
| Author: | MrLong [ Wed Mar 20, 2013 8:24 am ] |
| Post subject: | Re: Multi 10:4 Trader EA |
Yes, in 1.08, I'm just testing right now, as soon as it runs ok, I'll upload. I've also added optional filtering for trade entries to reduce risk, CandleTiger has added the RSI. Andy |
|
| All times are UTC | Page 20 of 160 |
|
Powered by phpBB® Forum Software © phpBB Limited |
|