- Credits
- 0
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?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);
}
}
I have attached the tester files on EURCHF M15 Time frame along with settings. Here in order make a smooth exit I have changed the support/resistance level time frame to M15 instead of M60.