Bonjour a toutes et tous.
J'ai un code qui calcul le DAILY PROFIT qui fonctionne.
Je n'arrive pas a trouver comment faire pour qu'il calcul en WEEKLY PROFIT.
Quelqu'un pourrait t'il modifier le code en conséquence s.v.p.
Contact ici ou en privé.
Remerciement.
Yohan.
COMMENT :
--------------------------
DAILY PROFIT code :
J'ai un code qui calcul le DAILY PROFIT qui fonctionne.
Je n'arrive pas a trouver comment faire pour qu'il calcul en WEEKLY PROFIT.
Quelqu'un pourrait t'il modifier le code en conséquence s.v.p.
Contact ici ou en privé.
Remerciement.
Yohan.
COMMENT :
Code
Comment(
"Gains Daily (%) : " ,DailyProfit(), "\n",
"\n",
" "
);
--------------------------
DAILY PROFIT code :
Code
void OnStart()
{
//---
DailyProfit();
WeeklyProfit();
}
//+------------------------------------------------------------------+
double DailyProfit()
{
double profit = 0;
int i,hstTotal=OrdersHistoryTotal();
for(i=0;i<hstTotal;i++)
{
if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==TRUE)
{
if(TimeToStr(TimeLocal(),TIME_DATE) == TimeToStr(OrderCloseTime(),TIME_DATE))
{
profit += OrderProfit() + OrderSwap() + OrderCommission() ;
}
}
}
return(profit);
}