Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
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)