請(qǐng)教:當(dāng)贏利>=1%,回吐30%平倉(cāng),卻怎么都實(shí)現(xiàn)不了 [金字塔]
- 咨詢內(nèi)容:
請(qǐng)教我想達(dá)到:贏利超過(guò)1%,回吐到70%平倉(cāng)的思路,如下程序卻總是第一次開倉(cāng)、平倉(cāng)是對(duì)的,之后每次開倉(cāng)之后馬上就平倉(cāng),不知問(wèn)題出在什么地方。
If enterbars=0 then
begin
HigherAfterEntry:=enterprice;
LowerAfterEntry:=enterprice;
end;
else If enterbars>=1 then
begin
HigherAfterEntry:=max(HigherAfterEntry,h_1);
LowerAfterEntry:=min(LowerAfterEntry,l_1);
end;//開多單的平倉(cāng)
if holding>0 and enterbars>0 then
begin
if enterbars>=1 and HigherAfterEntry>=enterprice*(1+1/100) //成交贏利超過(guò)1%,回吐到70%出場(chǎng)
then
begin
price:=EnterPrice+(HigherAfterEntry-EnterPrice)*70/100;
if low<=price then
begin
sell(1,holding,limitr,min(open,price)) ;
count2:=1;
end;
end;//開空單的平倉(cāng)
if holding<0 and enterbars>0 then
begin
if enterbars>=1 and lowerAfterEntry<=enterprice*(1-1/100) //成交贏利超過(guò)1%,回吐到70%贏利出場(chǎng)
then
begin
price:=EnterPrice - (EnterPrice-LowerAfterEntry)*70/100;
if high>=price then
begin
sellshort(1,holding,limitr,max(open,price)) ;
count2:=1;
end;
end; - 金字塔客服: 代碼帖全
有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友
可聯(lián)系技術(shù)人員 QQ: 1145508240 (不貴!點(diǎn)擊查看價(jià)格!)
相關(guān)文章
-
沒有相關(guān)內(nèi)容