|
- double StdDev_Func(int position,const double &price[],const double &MAprice[],int period)
- {
- //--- variables
- double StdDev_dTmp=0.0;
- //--- check for position
- if(position>=period)
- {
- //--- calcualte StdDev
- for(int i=0; i<period; i++)
- StdDev_dTmp+=MathPow(price[position-i]-MAprice[position],2);//从基数升到额定输出
- StdDev_dTmp=MathSqrt(StdDev_dTmp/period);//返回平方根
- }
- //--- return calculated value
- return(StdDev_dTmp);
- }
- //+------------------------------------------------------------------+
复制代码
就是将 StdDev_dTmp=MathSqrt(StdDev_dTmp/period);//返回平方根
改成了振幅。从而得出认为更科学的通道。
来源: 去年分析的通道半成品续· |
|