count 函數 和 LLV 一起用時候的 bug?
作者:金字塔 來源:cxh99.com 發布時間:2014年08月17日
- 咨詢內容:
V3.031 普通版本,股指連續5分鐘周期
lll := llv(l, 54);
bottomline : lll + 1, linethick0;
c1 : count(low < bottomline, 54), linethick0;
c2 : count(low < 2280.6, 54), linethick0;
如果 bottomline 等于 2280.6, 那么 c1 和 c2 應該相等。
但是26號收盤最后1根K線時候,bottomline 是 2280.6, c1 和 c2 卻不相等
- 金字塔客服:
因為這54個周期之內
bottomline是一直在變的
你用2280.6是不變的
所以不一樣