- Credits
- 0
Please use only on Recommended pairs, Other wise you will loose on long term.
Can please reattach the proper version of the ea? i think i've mixed up already.
Please use only on Recommended pairs, Other wise you will loose on long term.
how do i check the broker time?This is important if the broker's time is +3 by GMT, then in the EA settings you need to set GMT_offset 3 ? At the broker Ticmill GMT+3
how do i check the broker time?
M15 and Abovefor this final version is on what tf?
Thats fine, you have to set GMT offset as per your broker.my broker is gmt3+ so i change gmt from 2 to 3? in ea settings ?
any other changes according to my broker please i want every thing correct before i go live i want to use very very safe settings very very low riskThats fine, you have to set GMT offset as per your broker.
Has anyone the "badar.dll" for me?
Does the Tickmill broker have GMT + 3? It is necessary to put in the EA properties GMT_offset 3, not 0
no, even my VPS provider language is ENGLISH, its still gibberish fuckwhoknowwhattinggymagic is thatTo understand, you need an English language in the screenshot, not Chinese, make the language English, English know people more than Chinese
Does the Tickmill broker have GMT + 3? It is necessary to put in the EA properties GMT_offset 3, not 0
//close order routine /////////////////////////////////////////////////////////////////////////////////////////////////////
if ( (dprice1 <= -close)) buymsg="BUY";
if ( (dprice1 >= close)) buymsg="SELL";
if (sbuymsg != buymsg)
{
sbuymsg=buymsg;
for(int i=OrdersTotal()-1;i>=0;i--)
{
if(!OrderSelect(i,SELECT_BY_POS,MODE_TRADES))
continue;
if(OrderSymbol()!=Symbol())
continue;
RefreshRates();
if(OrderType()==OP_BUY)
OrderClose(OrderTicket(),OrderLots(),Bid, 3,CLR_NONE);
if(OrderType()==OP_SELL)
OrderClose(OrderTicket(),OrderLots(),Ask, 3,CLR_NONE);
}
}