You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
I see a report for this week, there are only 2 orders made by EA, is not normal.
Rahman,
I think that you had a limit for "ORDERSEND" of maxspread=3, and IBFX had 5-10 pips spread!!!.
Thats it.
We have to look for a new Broker!!!
hello rahman,
i saw your attached graph, and i want to ask which broker you used for this results ?
Thankesdo 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"?
Hello Rahman,
I saw your attached graph, and I want to ask which broker you used for this results ?
Thankesקרוסי, מה מהצב?
He ran it with IBFX which is InterBank.
Last night the spread in IBFX was 12-15 pips!!!
I've had 6 orders over the last two hours on a demo account, and 3 orders over the same time on a live ibfx mini account. Seems fine
NITEOWL660,
In DEMO account - every thing is GREAT, but in the real world....
THIS IS THE FOREX WORLD!!!
Hi _rdb_ & Who are angry about spread,
Here is a code to avoid entry when spread is more than X (this example 3)
extern int SpreadLimit = 3;
int DQ_ADJUST [] = { 0 , 1 , 10 , 100 , 1 , 10 , 100 };
int start()
{
int DIGITS = MarketInfo(Symbol(),MODE_DIGITS);
int DQADJ = DQ_ADJUST [ DIGITS ];
// Spread Filter
bool Spread_OK = true;
if(SpreadFilter && (Ask-Bid)/Point > SpreadLimit*DQADJ) Spread_OK = false;
// Entry Operation
if(TOTAL_OpenPosition <= MaxTrades && Spread_OK) // <-- Add condition here like this
{
// OrderSend
}
}Hi latimeria,
Thanks for your code...
*DQADJ is new code for me, thank so much my friend.
Hi latimeria,
Thanks for your code...
*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"?
Hello my friend.... You can used .set file for alpari or fxpro and change max spread to 60. so EA will work for you. Thanks
MACHSUS,
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 !!
MACHSUS, 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.
Please explanations
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
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...
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.
can you show me, where the wrong code i made in the script ?
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"?yes, there is to many EAS will trade for you in all of day, please search your self, I can give you some advice for that because I don't know where is the profitable EAS for you.