TrendL = Close > Highest(High,CountL)[1] and Low[1] = Lowest(Low,CountL)[1] and Countif(Close[1] < Open[1],CountL) = CountL; if TrendL then RevHigh = Highest(High,CountL)[1] ;
2楼
jinzhe 发表于:2015/11/24 9:03:21
请解释一下上面的代码
3楼
rfgvb 发表于:2015/11/24 9:17:55
{收盘价 > 近三根K棒最高价 且前一根K棒低点为近三根最低点 且前三根K棒收阴}
4楼
jinzhe 发表于:2015/11/24 9:19:46
close>ref(hhv(h,3),1) and ref(l,1)=ref(llv(l,3),1) and ref(all(isdown,3),1)