ref(c>o and ref(c>o,1),1) and c<o
ref(c>o and ref(c>o,1),1) and c<o
1、如果要指定整個陽線段的點數(shù)呢,例如連陽段總長度大于100點
2、如果是開盤就出現(xiàn)連陽后陰線,怎么描述呢
1
variable:n=0;
if c<o then n:=0;
if c>o and refx(c>o,1) then n:=n+c-o;
這個判斷比較難,是有未來性質(zhì)的
2
ref(any(c>O,todaybar),1) and c<o
1
variable:n=0;
if c<o then n:=0;
if c>o and refx(c>o,1) then n:=n+c-o;
這個判斷比較難,是有未來性質(zhì)的
2
ref(any(c>O,todaybar),1) and c<o
1、出現(xiàn)連陽后,當(dāng)出現(xiàn)陰線時,再來判斷之前連陽的長度呢,應(yīng)該不含未來吧,已經(jīng)確定了,怎么描述呢
2、ref(any(c>O,todaybar),1) and c<o 這個代碼中 連續(xù)陽線根數(shù)大于等于兩根好像沒有表達(dá)出來
[此貼子已經(jīng)被作者于2013/11/18 13:22:17編輯過]