| 本帖最后由 szwzs 于 2018-11-19 22:10 编辑 
 倍量阳线:=v>1.9*ref(v,1) and c>ref(c,1);
 缩量上涨:=v<ref(v,1) and  c>ref(c,1);
 xg:ref(倍量阳线,2) and ref(缩量上涨,1) and 缩量上涨;
 测试通过了----就叫倍量黄金柱吧:
 倍量阳线:=V>1.9*REF(V,1) AND C>REF(C,1);
 缩量上涨:=V<REF(V,1) AND  C>REF(C,1);
 XG:REF(倍量阳线,2) AND REF(缩量上涨,1) AND 缩量上涨;
 
 |