ma20:=ma(close,20);
BTma20:= (close>ma20) and (ref(close,1)>ref(ma20,1)) and (ref(close,2)>ref(ma20,2));
vol120:=ma(vol,120);
BTvol120:= (vol > vol120) and (ref(vol,1) > ref(vol120,1)) and (ref(vol,2) > ref(vol120,2));
小盘:=(CAPITAL<10000000);
中线强势:小盘 and BTma20 and BTvol120;
看股 吧公式 www.kangu ba.com
[源码翻译]通达信公式动态翻译显示
MA20赋值:收盘价的20日简单移动平均
BTMA20赋值: (收盘价>MA20) AND (1日前的收盘价>1日前的MA20) AND (2日前的收盘价>2日前的MA20)
VOL120赋值:成交量(手)的120日简单移动平均
BTVOL120赋值: (成交量(手) > VOL120) AND (1日前的成交量(手) > 1日前的VOL120) AND (2日前的成交量(手) > 2日前的VOL120)