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 saw your attached graph, and i want to ask which broker you used for this results ?
Thankes
do not trade with this ea or any other ea which trades during 9pm and 1am in the uk. The reason for this is because my broker odl securities has now closed my account today.
These ea's are targetting false prices, markets with no liquidity at the times of trading.
Essentially you are stealing from the broker.
You need to create an ea that can trade during uk hours!
Rdb - is there such a successful ea that can trade when there is a "market"?
*DQADJ is new code for me, thank so much my friend.
do not trade with this ea or any other ea which trades during 9pm and 1am in the uk. The reason for this is because my broker odl securities has now closed my account today.
These ea's are targetting false prices, markets with no liquidity at the times of trading.
Essentially you are stealing from the broker.
You need to create an ea that can trade during uk hours!
Rdb - is there such a successful ea that can trade when there is a "market"?
You may change MAXSPREAD to 6, and the E.A. will work, of course, but you will loose. The assumptions of this E.A. does not fit to spread = 6 !!
you may need to re-read my posting on page 1
I said there, you must know either the broker places with you to make trades.
abot spreads protection. I set for IBFX MaxSpread = 4, waiting to leave the EA signal with the condition spreads <= 4, if the condition is not found, and EA is not open position, so do not intrude with the increase MaxSpread. (EURGBP Spread in IBFX between 3-14)
images that I upload the results are the results of the previous 4-day trading on the broker ibfx.
From the one posted as source on post #1
Marked you lines that, when backtested, are giving results that are showing "the future"
If the one you are using currently uses the same logic, I am afraid you are going to get disappointed. The only advice is to take time for forward testing before going live
PHP Code:
for(int a=1;a<Bars;a++){
if(iFractals(NULL, PERIOD_M15, MODE_UPPER,a)!=0){
// 1st "future knowing" point
LastUpFractal=iFractals(NULL, PERIOD_M15, MODE_UPPER,a);
TimeOfLastUpFractal=Time[a];
break;
}//end if
}//end for
for(int s=1;s<Bars;s++){
if(iFractals(NULL, PERIOD_M15, MODE_LOWER,s)!=0){
// 2nd "future knowing" point
LastDownFractal=iFractals(NULL, PERIOD_M15, MODE_LOWER,s);
TimeOfLastDownFractal=Time[s];
break;
}//end if
}//end for
for(int v=1;v<Bars;v++){
if(iFractals(NULL, PERIOD_H1, MODE_UPPER,v)!=0){
// 3rd "future knowing" point
LastUpFractal_H1=iFractals(NULL, PERIOD_H1, MODE_UPPER,v);
TimeOfLastUpFractal_H1=Time[v];
break;
}//end if
}//end for
for(int w=1;w<Bars;w++){
if(iFractals(NULL, PERIOD_H1, MODE_LOWER,w)!=0){
// 4th "future knowing" point
LastDownFractal_H1=iFractals(NULL, PERIOD_H1, MODE_LOWER,w);
TimeOfLastDownFractal_H1=Time[s];
break;
}//end if
}//end for
Dear MLADEN,
I realy did not understand what you want to say. Can you please help me to...