- #2,901
- Oct 17, 2010 1:23pm Oct 17, 2010 1:23pm
- Joined Jun 2007 | Status: Teach men to fish | 7,384 Posts
- #2,920
- Oct 17, 2010 11:54pm Oct 17, 2010 11:54pm
- Joined Jun 2007 | Status: Teach men to fish | 7,384 Posts
Nanningbob 60x90 EA 3,920 replies
NanningBob's 4H Sellhigh BUYLOW 158 replies
Help regarding NanningBob EA 27 replies
Nanningbob 4H trading system 2,017 replies
Help to improve profitable EA - 1H NanningBob 40MA 200 BB 10 replies
DislikedTHe 1MA cross has its strong points and weak points. The problem I am having with Steve's EAs is they seem to wait until the next bar before entering the trade not at the cross when it happens. Since they seem to do this and I have in the code, previous bar 1MA must be on one side of the line and the next bar 1MA must be on the other, However, if the EA waits until the next bar to open the trade but the 1MA crossed happened on that previous bar then it wont enter the trade. Now you can solve that problem by putting the 1MA cross 2 previous bars...Ignored
DislikedTHe 1MA cross has its strong points and weak points. The problem I am having with Steve's EAs is they seem to wait until the next bar before entering the trade not at the cross when it happens. Since they seem to do this and I have in the code, previous bar 1MA must be on one side of the line and the next bar 1MA must be on the other, However, if the EA waits until the next bar to open the trade but the 1MA crossed happened on that previous bar then it wont enter the trade. Now you can solve that problem by putting the 1MA cross 2 previous bars...Ignored
DislikedFirst a sorry to NB for perhaps going on too hard, my intentions are not to insult you or flame your thread. I just felt these things were important and I felt you weren´t listening.
I am sorry.
Now on to the good part (to cure the wounds):
I have (after request from bluemele) created an EA for the TMA, the request from him looked like this:
---
I have some basic rules that DuffyPratt has spent many many hours putting together as well as myself replaying the simulator.
Basically, just a 1MA crossing outside the TMA bands with a x by...Ignored
DislikedHi Guys,
I wrote this from my basic skeleton EA. I added the TMA logic and the logic for the crossing the MAs. I didn't add the RSI function yet. If someone would like to do this, be my guest. This program has a tp and sl, jump stop, break even stop and trailing stop. They all work pretty well. I have this on backtester and seems to be taking trades as expected while watching in visual mode with Bob's template on the chart.Ignored
DislikedMcKeen:
Instead of getting into a pissing contest, why don't you test the system?
I have tested various iterations of the system over different timeframes....Ignored
Dislikedwhen i load the template i dont get the bands as per your images i get something thast loks like as fork with the centre line ancored ata point about 100 bars back see attchedIgnored
DislikedYou are correct, I will switch my focus.
Could you please elaborate more on what methods you have used for tp´s, sl´s, be´s etc so that I can implement them in my version of the EA?
Thanks for your work with this.
/ McKeenIgnored
QuoteDislikedVar1 = iMA(NULL, PERIOD_H4, 1, 0, MODE_LWMA, PRICE_MEDIAN,0);
Var2 = iMA(NULL, PERIOD_H4, 3, 2, MODE_LWMA, PRICE_LOW, 0);
Var3 = iMA(NULL, PERIOD_H4, 1, 0, MODE_LWMA, PRICE_MEDIAN,1);
Var4 = iMA(NULL, PERIOD_H4, 3, 2, MODE_LWMA, PRICE_LOW, 1);