兩個題
作者:金字塔 來源:cxh99.com 發布時間:2016年01月30日
- 咨詢內容:
a:開盤后無下影線超1點, 無陰實體超1點, 開盤后的最低點上升8點開多
b:可否在條件某成立時, 標文字和價格在該價格的具價位置上, 如開倉后最高價減5點=2500點時, 標在最后周期的2500點的位置
- 金字塔客服:
1, 無陰實體怎么定義?誰超誰1點?
2,hh:hhv(h,enterbars+1);
drawtext(enterbars>0 and hh-l>=5,l,NUMTOSTR(hh-5,2));
- 用戶回復:
1.沒有o-c>1的陰線
- 網友回復:
t1:(o<o and o-l<1) or (o>c and c-l<1) or (o=c and o-l<1);
t2:o-c>1;
t3:h-llv(l,enterbars+1)>=8;
if t1 and not (t2) and t3 then buy(holding=0,1,market);