//------------------------------------------------------------------------
// 简称: DMA
// 名称: 求动态移动平均
// 类别: 用户函数
// 类型: 用户函数
// 输出: 数值型
//------------------------------------------------------------------------
Params
NumericSeries Price(100);
Numeric Length(0.5);
Vars
NumericSeries ReturnValue(0);
Begin
If(BarStatus==0)
{
ReturnValue = Price;
//如果是第一根K线就直接把Price赋值
}
Else
{
ReturnValue = ReturnValue[1]*(1-Length)+Price*Length;
}
Return ReturnValue;
End
//------------------------------------------------------------------------
// 编译版本GS2004.06.12
// 用户版本2007/11/03 11:57
// 版权所有
// 更改声明TradeBlazer Software保留对TradeBlazer平台
//每一版本的TrabeBlazer公式修改和重写的权利
//------------------------------------------------------------------------