Differences between revisions 3 and 4
Revision 3 as of 2021-03-17 17:40:29
Size: 530
Editor: zbjxb
Comment:
Revision 4 as of 2021-03-17 17:41:18
Size: 583
Editor: zbjxb
Comment:
Deletions are marked like this. Additions are marked like this.
Line 22: Line 22:
MA(M, N): 求N日内的M指标的简单平移均值

demo

VOL>REF(HHV(VOL,N),1)*M;
成交量(手)>1日前的N日内成交量(手)的最高值*M

(DYNAINFO(4)-DYNAINFO(3))/DYNAINFO(3)*100<-N1 AND (DYNAINFO(7)-DYNAINFO(3))/DYNAINFO(3)*100>N2;
(开盘价-前收盘价)/前收盘价*100<-N1 AND (现价-前收盘价)/前收盘价*100>N2

变量

成交量:VOL
开盘价:DYNAINFO(4)
前收盘价:DYNAINFO(3)
现价:DYNAINFO(7)

函数

HHV(M, N): 求N日内M指标的最大值
REF(M, N): 求N日前的M指标值
MA(M, N): 求N日内的M指标的简单平移均值

stock/formula-editor (last edited 2021-08-19 04:04:10 by zbjxb)