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
I have a feeling that wolfe is cutting out half of the lines of code and making TFX a MACHINE!
ES
That's the idea, but testing isn't proving itself as well as v1_4 yet. It must work flawlessly on multiple pairs at once. v1_4 does this, but with a ton of code. I have received some ideas on how to streamline the code, but it isn't testing right just yet.
Also trying to include some thread ideas as well.
Hoped to have it ready by today, but it's not right yet.
I started tonight with a new account testing the 6 majors with lot size set to .1, increment 0, next trade 50, TP $50, SL $1000. I will post results at the end of week. Is the time frame set to minutes (60m = 1hr)?
I started tonight with a new account testing the 6 majors with lot size set to .1, increment 0, next trade 50, TP $50, SL $1000. I will post results at the end of week. Is the time frame set to minutes (60m = 1hr)?
Lets hope the test goes well Icfx.
The Timeframe parameter controls which time frame the moving average is pulled from, regardless which chart you are attached to.
I coded to use numbers 1-7, that way if someone wanted to quickly run time frames through the optimizer, they could do so.
Here are their values:
Code:
if (Timeframe==1){MA_Timeframe=1;}//(1 min)
if (Timeframe==2){MA_Timeframe=5;}//(5 min)
if (Timeframe==3){MA_Timeframe=15;}//(15 min)
if (Timeframe==4){MA_Timeframe=30;}//(30 min)
if (Timeframe==5){MA_Timeframe=60;}//(1 hr)
if (Timeframe==6){MA_Timeframe=240;}//(4 hr)
if (Timeframe==7){MA_Timeframe=1440;}//(1 day)