回測(cè)報(bào)告組合利潤(rùn)不對(duì) [開(kāi)拓者 TB]
-
咨詢內(nèi)容:
本帖最后由 a379955579 于 2019-10-25 21:52 編輯
我用TBQUANT,回測(cè)報(bào)告組合利潤(rùn)不對(duì),如圖(上傳不了圖片和附件)
單個(gè)商品利潤(rùn)加起來(lái)不等于下面那個(gè)總利潤(rùn)
這是我設(shè)置問(wèn)題嗎??
?來(lái)源:CXH99.COM
-
TB技術(shù)人員:
? ? ? ? ? ? ? ? 回測(cè)組合利潤(rùn)不對(duì)的問(wèn)題已經(jīng)解決了。重置系統(tǒng)的所有數(shù)據(jù)就好。
? ? ? ? ? ? ? ? 這是另一個(gè)問(wèn)題,幫看看這樣子的判斷條件會(huì)出問(wèn)題不?
? ? ? ? ? ? ? ? 我想在當(dāng)天快要收盤的時(shí)候以當(dāng)前最新價(jià)成交,這樣會(huì)信號(hào)閃爍不?求大神? ? ? ?
? ? ? ? ? ? ? ? if(Currenttime>=0.145958 and Currenttime<0.150001 and MarketPosition<=0 and close>=buyline)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? BuyToCover(0,close);
? ? ? ? ? ? ? ? Buy(lots,close);
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? if(Currenttime>=0.145958 and Currenttime<0.150001 and MarketPosition>=0 and close<=sellline)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? Sell(0,close);
? ? ? ? ? ? ? ? SellShort(lots,close);?
-
TB客服:
? ?? ?? ?? ?? ? 上面那種寫法不知道會(huì)不會(huì)信號(hào)閃爍,重復(fù)發(fā)單?
? ?? ?? ?? ?? ? 如果改成這樣子,會(huì)不會(huì)可以避免信號(hào)閃爍?
? ?? ?? ?? ?? ? Series<Numeric> a(0);
? ?? ?? ?? ?? ? if(close>=buyline and Currenttime>=0.145958 and Currenttime<0.150001)
? ?? ?? ?? ?? ? {a=1;}
? ?? ?? ?? ?? ? if(Currenttime>=0.145958 and Currenttime<0.150001 and MarketPosition<=0 and a==1)
? ?? ?? ?? ?? ? {
? ?? ?? ?? ?? ? BuyToCover(0,close);
? ?? ?? ?? ?? ? Buy(lots,close);
? ?? ?? ?? ?? ? }?
-
網(wǎng)友回復(fù):
a379955579 發(fā)表于 2019-10-27 00:12
上面那種寫法不知道會(huì)不會(huì)信號(hào)閃爍,重復(fù)發(fā)單?
? ?? ?? ?? ?? ? 如果改成這樣子,會(huì)不會(huì) ...
無(wú)論改前改后,都會(huì)信號(hào)閃爍,都會(huì)重復(fù)發(fā)單 。
建議系統(tǒng)地學(xué)習(xí)TB公式基礎(chǔ)語(yǔ)法,以及多看看軟件自帶的經(jīng)典策略公式,然后再試著自己編寫公式。?
- 網(wǎng)友回復(fù):
Currenttime<0.150001? ?
MarketPosition<=0
a==1? ?? ?? ?? ?? ?? ?? ?
請(qǐng)教下,在這快要收盤的幾秒里面,這四個(gè)條件都不會(huì)隨著TICK推送而變化,為什么還會(huì)重復(fù)發(fā)單?
開(kāi)盤賦值a=0,,然后a=0一直不變直到這幾秒,a一旦賦值=1后,這幾秒里面沒(méi)有其他賦值給a的內(nèi)容,難道上面那里當(dāng)close>=buyline這個(gè)條件變得=false的時(shí)候,會(huì)撤銷a=1這行的賦值嗎?
有思路,想編寫各種指標(biāo)公式,交易模型,選股公式,還原公式的朋友
可聯(lián)系技術(shù)人員 QQ: 262069696 或微信號(hào):cxh99cxh99 進(jìn)行 有償收費(fèi) 編寫!
(怎么收費(fèi),代編流程等詳情請(qǐng)點(diǎn)擊閱讀!)
(注:由于人數(shù)限制,QQ或微信請(qǐng)選擇方便的一個(gè)聯(lián)系我們就行,加好友時(shí)請(qǐng)簡(jiǎn)單備注下您的需求,否則無(wú)法通過(guò)。謝謝您!)
相關(guān)文章
-
沒(méi)有相關(guān)內(nèi)容