Edit Your Comment
Function that returns the number of consecutive wins
forex_trader_318221
Member Since Apr 07, 2016
32 posts
forex_trader_25447
Member Since Dec 21, 2010
131 posts
Aug 24, 2016 at 14:38
Member Since Dec 21, 2010
131 posts
This program return numbers of winners (nWin)
from last accepted loss in current symbol :
// program global variable
double nWin;
void Profit() // Return nWin
{ datetime LastTimeLOSS=0;
j=0;
while ( j<OrdersHistoryTotal() )
{ if ( OrderSelect(j,SELECT_BY_POS,MODE_HISTORY) )
if ( OrderSymbol()==_Symbol )
if ( OrderType()==OP_BUY || OrderType()==OP_SELL )
{ if ( OrderCloseTime()>LastTimeLOSS && OrderProfit()<0.0 )
LastTimeLOSS=OrderCloseTime();
}
j++; }
if ( OrderSelect(0,SELECT_BY_POS,MODE_HISTORY) )
if ( LastTimeLOSS==0 ) LastTimeLOSS=OrderOpenTime();
else {}
else LastTimeLOSS=TimeCurrent();
j=0; CurrentPROFIT=0; nWin=0;
while ( j<OrdersHistoryTotal() )
{ if ( OrderSelect(j,SELECT_BY_POS,MODE_HISTORY) )
if ( OrderType()==OP_BUY || OrderType()==OP_SELL )
if ( ( OrderCloseTime()==LastTimeLOSS && OrderSymbol()!=_Symbol ) ||
OrderCloseTime()>LastTimeLOSS ) nWin++;
j++;
}
}
from last accepted loss in current symbol :
// program global variable
double nWin;
void Profit() // Return nWin
{ datetime LastTimeLOSS=0;
j=0;
while ( j<OrdersHistoryTotal() )
{ if ( OrderSelect(j,SELECT_BY_POS,MODE_HISTORY) )
if ( OrderSymbol()==_Symbol )
if ( OrderType()==OP_BUY || OrderType()==OP_SELL )
{ if ( OrderCloseTime()>LastTimeLOSS && OrderProfit()<0.0 )
LastTimeLOSS=OrderCloseTime();
}
j++; }
if ( OrderSelect(0,SELECT_BY_POS,MODE_HISTORY) )
if ( LastTimeLOSS==0 ) LastTimeLOSS=OrderOpenTime();
else {}
else LastTimeLOSS=TimeCurrent();
j=0; CurrentPROFIT=0; nWin=0;
while ( j<OrdersHistoryTotal() )
{ if ( OrderSelect(j,SELECT_BY_POS,MODE_HISTORY) )
if ( OrderType()==OP_BUY || OrderType()==OP_SELL )
if ( ( OrderCloseTime()==LastTimeLOSS && OrderSymbol()!=_Symbol ) ||
OrderCloseTime()>LastTimeLOSS ) nWin++;
j++;
}
}
*Commercial use and spam will not be tolerated, and may result in account termination.
Tip: Posting an image/youtube url will automatically embed it in your post!
Tip: Type the @ sign to auto complete a username participating in this discussion.