第一种类型:value_a1:=vol/capital*100;value_a2:=(high-low)/low*100;value_a3:=value_a1>3 and value_a2>8;value_a4:=count(value_a3,200)>10;value_a: value_a3 and ref(value_a4,1);第二种类型:value_a1:=vol/capital*100;value_a2:=(high-low)/low*100;value_a3:=value_a1>3 and value_a2>8;value_a:count(value_a3,200)>10 andvalue_a3;两种类型的区别在于:是否包括最后一天(今天)为统计周期; 20210311
dif:=ema(close,12)-ema(close,26);dea:=ema(dif,9);macd:=(dif-dea)*2;macd背离:l<llv(l,10) and macd>llv(macd,10);dif赋值:收盘价的12日指数移动平均-收盘价的26日指数移动平均dea赋值:dif的9日指数移动平均macd赋值:(dif-dea)*2输出macd背离:最低价<1...