文章 "从 MQL4 迁移到 MQL5" - 页 13 1...678910111213 新评论 billz_billz 2023.10.08 17:11 #121 这本伟大的指南让我受益匪浅。下面是我对函数的一点改进,与大家分享。 double iMAOnArrayMQL4(double &array[], int total, int period, int ma_shift, int ma_method, int shift) { double buf[],arr[]; if(total==0) total=ArraySize(array); if(total>0 && total<=period) return(0); if(shift>total-period-ma_shift) return(0); switch(ma_method) { case MODE_SMA : { total=ArrayCopy(arr,array,0,shift+ma_shift,period); if(ArrayResize(buf,total)<0) return(0); double sum=0; int i,pos=total-1; for(i=1;i<period;i++,pos--) sum+=arr[pos]; while(pos>=0) { sum+=arr[pos]; buf[pos]=sum/period; sum-=arr[pos+period-1]; pos--; } return(buf[0]); } case MODE_EMA : { if(ArrayResize(buf,total)<0) return(0); double pr=2.0/(period+1); int pos=total-2; while(pos>=0) { if(pos==total-2) buf[pos+1]=array[pos+1]; buf[pos]=array[pos]*pr+buf[pos+1]*(1-pr); pos--; // optimization if(pos < (shift+ma_shift)) break; } return(buf[shift+ma_shift]); } case MODE_SMMA : { if(ArrayResize(buf,total)<0) return(0); double sum=0; int i,k,pos; pos=total-period; while(pos>=0) { if(pos==total-period) { for(i=0,k=pos;i<period;i++,k++) { sum+=array[k]; buf[k]=0; } } else sum=buf[pos+1]*(period-1)+array[pos]; buf[pos]=sum/period; pos--; // optimization if(pos < (shift+ma_shift)) break; } return(buf[shift+ma_shift]); } case MODE_LWMA : { if(ArrayResize(buf,total)<0) return(0); double sum=0.0,lsum=0.0; double price; int i,weight=0,pos=total-1; for(i=1;i<=period;i++,pos--) { price=array[pos]; sum+=price*i; lsum+=price; weight+=i; } pos++; i=pos+period; while(pos>=0) { buf[pos]=sum/weight; if(pos==0) break; pos--; i--; price=array[pos]; sum=sum-lsum+price*period; lsum-=array[i]; lsum+=price; // optimization if(pos < (shift+ma_shift)) break; } return(buf[shift+ma_shift]); } default: return(0); } return(0); } 我的优化删除了不必要的计算。 Xing Shun Li 2025.04.24 11:39 #122 MetaQuotes: 新文章 从 MQL4 迁移到 MQL5已发布: 作者:Sergey Pavlov icustom is the fatal flaw of conversion.Uncertain parameters are a nightmare zoudong 2025.06.06 07:05 #123 不错 1...678910111213 新评论 您错过了交易机会: 免费交易应用程序 8,000+信号可供复制 探索金融市场的经济新闻 注册 登录 拉丁字符(不带空格) 密码将被发送至该邮箱 发生错误 使用 Google 登录 您同意网站政策和使用条款 如果您没有帐号,请注册 可以使用cookies登录MQL5.com网站。 请在您的浏览器中启用必要的设置,否则您将无法登录。 忘记您的登录名/密码? 使用 Google 登录
这本伟大的指南让我受益匪浅。下面是我对函数的一点改进,与大家分享。
我的优化删除了不必要的计算。
新文章 从 MQL4 迁移到 MQL5已发布:
作者:Sergey Pavlov
icustom is the fatal flaw of conversion.Uncertain parameters are a nightmare