您現(xiàn)在的位置:程序化交易>> 期貨公式>> 金字塔等>> 金字塔知識(shí)>>正文內(nèi)容

請(qǐng)問怎么解決反手不開倉(cāng)的問題 [金字塔]

  • 咨詢內(nèi)容: 老師你好,下面是我的交易代碼示例,其中,平多條件(PD)想表達(dá)的意思是:如果開空條件已成立,即使持有多單也馬上平多開空(PK亦然),這時(shí)候系統(tǒng)就只有平倉(cāng),沒有開倉(cāng),請(qǐng)問是什么原因?
    dif:=ema(c,12)-ema(c,26);dea:=ema(dif,9);macd:=2*(dif-dea);cpx:=ma(c,14);entertime:=time<150000 and time>091600;exittime:=time>=151400;
    //交易條件kd:=cross(c,cpx) and cpx>ref(cpx,1) and macd>0 and entertime;//開多條件kk:=cross(cpx,c) and cpx<ref(cpx,1) and  macd<0 and entertime;//開空條件pd:=(macd<0 and cpx<ref(cpx,1)) or kk or exittime;//平多條件(如果開空條件成立,即使持有多單,馬上平多開空pk:=(macd>0 and cpx>ref(cpx,1)) or kd or exittime;//平空條件(如果開多條件成立,即使持有空單,馬上平空開多
    //交易系統(tǒng) if holding<>0 then begin   sell(pd,0,limit,c),orderqueue;   sellshort(pk,0,limit,c),orderqueue;end
    if holding=0 then begin   buy(kd,1,limit,c),orderqueue;   buyshort(kk,1,limit,c),orderqueue;end

     

  • 金字塔客服: if holding<>0 then begin    sell(pd,0,limit,c),orderqueue;    sellshort(pk,0,limit,c),orderqueue; end
    if holding=0 then begin    buy(kd,1,limit,c),orderqueue;    buyshort(kk,1,limit,c),orderqueue; end

     

     

    這樣的順序是不正確的,軟件的公式編輯界面有說(shuō)明是如何寫的。而且,用戶是不是不明白ORDERQUEUE是用來(lái)干什么的?加上來(lái)是不是為了好看?

     

    dif:=ema(c,12)-ema(c,26); dea:=ema(dif,9); macd:=2*(dif-dea); cpx:=ma(c,14); entertime:=time<150000 and time>091600; exittime:=time>=151400;   kd:=cross(c,cpx) and cpx>ref(cpx,1) and macd>0 and entertime;//開多條件 kk:=cross(cpx,c) and cpx<ref(cpx,1) and  macd<0 and entertime;//開空條件 pd:=(macd<0 and cpx<ref(cpx,1)) or exittime;//平多條件(如果開空條件成立,即使持有多單,馬上平多開空 pk:=(macd>0 and cpx>ref(cpx,1)) or exittime;//平空條件(如果開多條件成立

     

    if kd then begin

       sellshort(1,0,thisclose);

       buy(holding=0,1,thisclose);

    end

     

    if kk then begin

       sell(1,0,thisclose);

       buyshort(holding=0,1,thisclose);

    end

     

    if pd then sell(1,0,thisclose);

    if pk then sellshort(1,0,thisclose);

     

     

  • 用戶回復(fù): 謝謝老師,我改過(guò)來(lái)了!如果我加上移動(dòng)止贏的全局變量(YDZY),麻煩老師看一下下面的格式和邏輯對(duì)不對(duì)呢?

    if ydzy=1 and holding<>0 then begin   if h>highprice then highprice:=h;   if (highprice-enterprice>=49 and highprice-h>=6) or (highprice-enterprice>=19 and h-enterprice<=17) then sell(1,0,limitr,c);   if l<lowprice then lowprice:=l;   if (enterprice-lowprice>=30 and l-lowprice>=16) or (enterprice-lowprice>=19 and enterprice-l<=13) then sellshort(1,0,limitr,c);end

     

  • 網(wǎng)友回復(fù): 謝謝老師,我改過(guò)來(lái)了,如果加上移動(dòng)止贏變量,麻煩老師再看看下面的公式格式和邏輯對(duì)不對(duì)?謝謝!
    variable:ydzy=1;                 //移動(dòng)止盈開關(guān)variable:highprice=0,lowprice=0; //記錄開倉(cāng)價(jià)
    if kd  then begin   sellshort(1,0,limitr,c);   buy(holding=0,1,limitr,c);   highprice:=enterprice; end if kk  then begin   sell(1,0,limitr,c);   buyshort(holding=0,1,limitr,c);   lowprice:=enterprice;end if pd or enterprice-c>=10 then sell(1,0,limitr,c);if pk or c-enterprice>=10 then sellshort(1,0,limitr,c);
    if ydzy=1 and holding<>0 then begin   if h>highprice then highprice:=h;   if (highprice-enterprice>=49 and highprice-h>=6) or (highprice-enterprice>=19 and h-enterprice<=17) then sell(1,0,limitr,c);   if l<lowprice then lowprice:=l;   if (enterprice-lowprice>=30 and l-lowprice>=16) or (enterprice-lowprice>=19 and enterprice-l<=13) then sellshort(1,0,limitr,c);end

     

  • 網(wǎng)友回復(fù): 現(xiàn)在是哪里不對(duì)的問題?

 

有思路,想編寫各種指標(biāo)公式,程序化交易模型,選股公式,預(yù)警公式的朋友

可聯(lián)系技術(shù)人員 QQ: 1145508240  有需要幫忙請(qǐng)點(diǎn)擊這里留言!!!進(jìn)行 有償 編寫!不貴!點(diǎn)擊查看價(jià)格!


【字體: 】【打印文章】【查看評(píng)論

相關(guān)文章

    沒有相關(guān)內(nèi)容
主站蜘蛛池模板: 一级特级aaaa毛片免费观看| 亚洲欧美日韩精品久久| 麻豆狠色伊人亚洲综合网站| 百合h肉动漫无打码在线观看| 国产福利在线观看你懂的| 久碰人澡人澡人澡人澡91| 色综合久久精品中文字幕首页 | 鲁啊鲁视频在线精品| 成年女人看片免费视频播放器| 亚洲成a人片毛片在线| 黄在线观看www免费看| 在线va无码中文字幕| 九九这里只有精品视频| 特级毛片www| 四虎影视1515hh四虎免费| 国产露出调教91| 亚洲欧洲中文日韩久久av乱码| 人与禽交另类网站视频| 日韩a一级欧美一级| 亚洲永久中文字幕在线| 精品无码成人片一区二区| 国产寡妇树林野战在线播放| 中国一级全黄的免费观看| 狠狠色婷婷久久一区二区三区| 国产精品久久久久久影视| 久久久久久久久人体| 欧美双茎同入视频在线观看 | 99久热re在线精品996热视频| 粗大的内捧猛烈进出视频一| 欧美成人精品一区二三区在线观看| 国产成人性色视频| 999久久久国产精品| 曰批免费视频播放免费| 亚洲精品乱码久久久久久不卡| 精品日韩二区三区精品视频 | 日日干夜夜操s8| 亚洲AV无码一区东京热| 毛片免费在线观看网站| 国产成人涩涩涩视频在线观看 | 日韩中文字幕视频| 亚洲丰满熟女一区二区v|