Sure ,
i will suggest once 10 trades already executes then we will hedge it. and then we will close it by macd cross. it gives best result ever.
the bt give you a lot of scenarios, if you don't get through a 1 year bt or 5 years bt 'my favorite" or more, you should not waste ur time unless you want & can trade semi autoDear Members.
there is no any miracle Happens on this markets. every robot has 2 side. 1st one is loss and 2nd one is win.
All we have to do is help a Ea to make it better .
i am working on this Ea since last 3 months. it looks quiet profitable if you help him little ..
Dont Judge this EA by BT. because BT never Judge .
another reason not to BT is because BT will give you result for 24 Hour . and we are not gonna run our account 24 hour under any circumstances.
thank you . and please advice . i will let you know how we can get better result from it .
TF - M1
EUR/USD - for 1000$
EUR/USD + GBP/USD - for 1500$
Default setting
Maximum sell Or buy orders for Each pair should be 10. once 10 buy executes close the chart . and wait for the clear that trades . once it clear . open chart again.
Enjoy.
Dear,
it is the worst thing about this ea. there is no any option with we can change the maximum number of trades. we only have to monitor it . i dint found any script like that yet. but may be we can try it on google. please let me know if you find anything for this .
Hi please English. What is the language??[QUOTE = "tanaka akiko, posting: 204583, anggota: 33635"] HI, EA ini tidak memiliki angka ajaib.
Jika saya ingin mengajukan permohonan ke EUR-USD dan EUR-GBP pada saat yang sama, bagaimana saya harus melakukannya?
Bisakah saya menetapkan EA yang sama di kedua grafik tanpa nomor ajaib?
Siapa pun tolong adivise.
Terima kasih!
esta:[/KUTIPAN]
I have modified same EA - ROBETFX.mq4. The original name is "sell&buy EA. I have improve on it were I added Slope Direction Line indication so that the EA follow the SDL to enter trade and exit trade. Here is the input I made:Here is MQ4. The robot is an classic, also released under the name 'Ultimate EA' and 'Robet FX'. I changed this EA couple of times, but in the end it will blow account. Have fun!
I have not tested it live. Am yet to try it on VPS with any demo account. But its better on strategy tester with 0.01 lot of 500$ above.and what is the outcome/result
Can we get full mql4 for this, you coded? Thanks!I have modified same EA - ROBETFX.mq4. The original name is "sell&buy EA. I have improve on it were I added Slope Direction Line indication so that the EA follow the SDL to enter trade and exit trade. Here is the input I made:
if(UseSlopeDirection)//--- SD ---//
{
double sig = Lowest(NULL,0,MODE_LOW,i-dist,0);
double SDL2=iCustom(Symbol(),0,"Slope Direction Line",period,method,price,1,1);
double SDL4=iCustom(Symbol(),0,"Slope Direction Line",period,method,price,0,1);
int limit=1,buy=0,sell=0;
for(int f=0;f<=CandleShift;f++)
{
double SDL1=iCustom(Symbol(),0,"Slope Direction Line",period,method,price,1,f);
double SDL3=iCustom(Symbol(),0,"Slope Direction Line",period,method,price,0,f);
if(SDL1>0&&SDL1!=EMPTY_VALUE)buy++;
if(SDL3>0&&SDL3!=EMPTY_VALUE)sell++;
}
if(SDL2>0&&SDL2!=EMPTY_VALUE && SDL4 == EMPTY_VALUE && buy >= CandleShift){BUY=true;}
else BUY=false;
if(SDL4>0&&SDL4!=EMPTY_VALUE && SDL2 == EMPTY_VALUE && sell >= CandleShift){SELL=true;}
else SELL=false;
){
RefreshRates();
double lastblot=LastLot(OP_BUY);
else Lot = lots;
if(OppositeSignalExit)closesell();
if(OrderSend(Symbol(),OP_BUY,Lot,Ask,3,0,0,"buy",magic,0,Blue)){}
string AN="ArrBuy "+TimeToStr(CurTime());
ObjectCreate(AN,OBJ_ARROW,0,Time[1],Low[1]-6*Point,0,0,0,0);
ObjectSet(AN, OBJPROP_ARROWCODE, 233);
ObjectSet(AN, OBJPROP_COLOR , Blue);
}
}