趋势线:=3*sma((close-llv(low,27))/(hhv(high,27)-llv(low,27))*100,5,1)-2*sma(sma((close-llv(low,27))/(hhv(high,27)-llv(low,27))*100,5,1),3,1);趋势:=ema(ema(趋势线,3),1);见底信号:=2;买点准备:=趋势线;买入时间:=cross(趋势线,见底信号);xg:买点准备 and 买入时间;测试通过, 提示:由于它是... 20210311
{绿线买}lc:=ref(close,1);操作线:=sma(max(close-lc,0),2,1)/sma(abs(close-lc),2,1)*100;趋势线:=sma(max(close-lc,0),14,1)/sma(abs(close-lc),14,1)*100;震仓线:=45;pp:=操作线<震仓线 and ref(操作线,1)>震仓线 ;涨停:=if(ref(c,1)...
{未来函数,慎用}var11:=zig(3,6)>ref(zig(3,6),1) and ref(zig(3,6),1)<=ref(zig(3,6),2) and ref(zig(3,6),2)<=ref(zig(3,6),3);var13:=zig(3,22)>ref(zig(3,22),1) and ref(zig(3,22),1)<=ref(zig(3,22),...
var2:=if(month<12,1,1);var3:=(2*close+high+low)/4;var4:=llv(low,34);var5:=hhv(high,34);主力:=ema((var3-var4)/(var5-var4)*100,13)*var2;散户:=ema(0.667*ref(主力,1)+0.333*主力,2);上扬:cross(主力,30) and 散户<主力;...