老師,幫我寫個加倉策略
作者:金字塔 來源:cxh99.com 發(fā)布時間:2016年12月21日
- 咨詢內(nèi)容:
我想設(shè)置一個,在初始倉位未平倉的情況下,再次出現(xiàn)買點(diǎn),每次加2手,該怎么表達(dá)
- 金字塔客服:
if macd1>0 and macd1>ref(macd1,1) and isup and oi>ref(oi,1) and A>ref(A,1) then buy(holding=0,ss,marketr);這是開倉條件,如何把它加進(jìn)去?
- 用戶回復(fù):
if macd1>0 and macd1>ref(macd1,1) and isup and oi>ref(oi,1) and A>ref(A,1) and holding=ss then buy(1,ss,marketr);
- 網(wǎng)友回復(fù):
我加進(jìn)去后,多單信號全部消失了,這是是嗎原因
- 網(wǎng)友回復(fù):
什么原因