客服热线:18391752892

MQL4计算月份天数的自定义函数

   日期:2019-01-12     浏览:135    
马上注册,结交更多好友,下载更多资源

您需要 登录 才可以下载或查看,没有帐号?注册 该自定义函数计算一年中每个月的天数,返回数值可以调用到指标或者EA文件中使用。

datetime decDateTradeDay (datetime dt) {
 int ty=TimeYear(dt);
 int tm=TimeMonth(dt);
 int td=TimeDay(dt);
 int th=TimeHour(dt);
 int ti=TimeMinute(dt);

 td--;
 if (td==0) {
    tm--;
    if (tm==0) {
     ty--;
     tm=12;
    }
    if (tm==1 || tm==3 || tm==5 || tm==7 || tm==8 || tm==10 || tm==12) td=31;
    if (tm==2) if (MathMod(ty, 4)==0) td=29; else td=28;
    if (tm==4 || tm==6 || tm==9 || tm==11) td=30;
 }
 return(StrToTime(ty+ . +tm+ . +td+ +th+ : +ti));
}
//+------------------------------------------------------------------+复制代码

外汇交易有很大的风险性,本站所有资源均来自网络,请选择使用,如若出现亏损,本站不承担任何责任!


特别提示:本信息由相关企业自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


0相关评论
相关行情
推荐行情
点击排行