回復 1# reflex
我剛剛去查看了原始MA的程式碼 發現上限的原始設定是300下面是MA指標的原始碼
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
只要修改紅色字體那個數字就可以更改上限 |