大伊人青草狠狠久久-大伊香蕉精品视频在线-大伊香蕉精品一区视频在线-大伊香蕉在线精品不卡视频-大伊香蕉在线精品视频75-大伊香蕉在线精品视频人碰人

您現在的位置:程序化交易>> 期貨公式>> 金字塔等>> 金字塔知識>>正文內容

后臺程序編寫,幫看看那里有問題。 [金字塔]

  • 咨詢內容: 根據阿火:后臺下單模板;編寫的模型。if holding=0 then buy(val1>0,100,LIMIT,O,0);buyshort(val1>0,100,LIMIT,O,0);ee:=enterprice; //多頭平倉 IF (h-ee)>3 and (h-ee)<50 THEN SELL(1,10,LIMIT,ee+3,0),ORDERQUEUE;  SELL(1,10,LIMIT,EXITPRICE+3,0),ORDERQUEUE;IF (ee-l)>1 and (ee-l)<50 THEN SELL(1,10,LIMIT,ee-1,0),ORDERQUEUE;  SELL(1,10,LIMIT,EXITPRICE-3,0),ORDERQUEUE;  IF TSELLHOLDING(1)>0 THEN BEGIN  //空頭平倉 IF (h-ee)>1 and (h-ee)<50 THEN SELLSHORT(1,10,LIMIT,ee+1,0),ORDERQUEUE;  SELLSHORT(1,10,LIMIT,EXITPRICE+3,0),ORDERQUEUE; IF (ee-l)>3 and (ee-l)<50 THEN SELLSHORT(1,10,LIMIT,ee-3,0),ORDERQUEUE;  SELLSHORT(1,10,LIMIT,EXITPRICE-3,0),ORDERQUEUE;tm:=50;//撤單時間cc800988:=holding;drawtextex(1,1,800,0,'虛擬持倉為:'+numtostr(cc800988,0));//在圖表上輸入虛擬持倉監控if not(islastbar) or workmode<>1 then exit;xiadan800988:=cc800988-hold;if xiadan800988>0.5 and tsubmit(0)>tm then tcancelex(0,0,cc800988,stklabel);//撤單功能。tsell(1,10,mkt);tsellshort(1,10,mkt);if xiadan800988>0.5 then begin cang:=min(xiadan800988,abs(hold));  if hold<0 then begin  if (h-ee)>1 and (h-ee)<50 then  tsellshort(1,10,LMT,tenterprice+1,0,'800988'),ALLOWREPEAT;  tsellshort(1,10,LMT,TEXITPRICE+3,0,'800988'),ALLOWREPEAT;  if (ee-l)>3 and (ee-l)<50 then  tsellshort(1,10,LMT,tenterprice-3,0,'800988'),ALLOWREPEAT;  tsellshort(1,10,LMT,TEXITPRICE-3,0,'800988'),ALLOWREPEAT;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 平空 %.0f',cang); end cang:=xiadan800988+min(hold,0); if cang>0 then begin  if (TIME>=085600 AND TIME<=90000) then    tbuy(1,100,LMT,DYNAINFO(54),0,'800988');  if (currenttime>=93000 and currenttime>=144000) then   tbuy(1,100,LMT,O,0,'800988'),ALLOWREPEAT;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 開多 %.0f',cang); endendif xiadan800988<-0.5 then begin cang:=min(abs(xiadan800988),abs(hold)); if hold>0 then begin  if (h-ee)>3 and (h-ee)<50 then  tsell(1,10,LMT,tenterprice+3,0,'800988'),ALLOWREPEAT;  tsell(1,10,LMT,TEXITPRICE+3,0,'800988'),ALLOWREPEAT;  if (ee-l)>1 and (ee-l)<50 then  tsell(1,10,LMT,tenterprice-1,0,'800988'),ALLOWREPEAT;  tsell(1,10,LMT,TEXITPRICE-3,0,'800988'),ALLOWREPEAT;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 平多 %.0f',cang); end cang:=abs(xiadan800988)-max(hold,0); if cang>0 then begin  if (TIME>=085600 AND TIME<=90000) then    tbuyshort(1,100,LMT,DYNAINFO(55),0,'800988');  if (currenttime>=93000 and currenttime>=144000) then   tbuyshort(1,100,LMT,O,0,'800988'),ALLOWREPEAT;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 開空 %.0f',cang);  end endendhold:=cc800988;

    在圖上看不到與阿火一樣的標示。請問那里出了問題。

     

  • 金字塔客服: 這是阿火模型;Globalvariable:hold=drawnull;//藍色部分改為你自己的模型buycond:=h>ref(hhv(h,10),1);sellcond:=l<ref(llv(l,10),1);if holding>0 and sellcond then sell(1,1,market);if holding<0 and buycond then sellshort(1,1,market);if holding=0 and buycond then buy(1,1,market);if holding=0 and sellcond then buyshort(1,1,market);cc800988:=holding;//這句放在信號穩定的地方
    drawtextex(1,1,800,0,'虛擬持倉為:'+numtostr(cc800988,0));//在圖表上輸入虛擬持倉以便監控if not(islastbar) or workmode<>1 then exit;xiadan800988:=cc800988-hold;if xiadan800988>0.5 then begin cang:=min(xiadan800988,abs(hold)); if hold<0 then begin  tsellshort(1,cang,mkt,0,0,'800988'),allowrepeat;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 平空 %.0f',cang); end cang:=xiadan800988+min(hold,0); if cang>0 then begin  tbuy(1,cang,mkt,0,0,'800988'),allowrepeat;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 開多 %.0f',cang); endendif xiadan800988<-0.5 then begin cang:=min(abs(xiadan800988),abs(hold)); if hold>0 then begin  tsell(1,cang,mkt,0,0,'800988'),allowrepeat;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 平多 %.0f',cang); end cang:=abs(xiadan800988)-max(hold,0); if cang>0 then begin  tbuyshort(1,cang,mkt,0,0,'800988'),allowrepeat;  debugfile('D:\800988.txt',numtostr(hold,0)+' '+numtostr(cc800988,0)+' 開空 %.0f',cang); endendhold:=cc800988;

     

  • 用戶回復: 把你的公式貼完整

     

  • 網友回復: 完整

     

  • 網友回復: 貼完整的公式,

 

有思路,想編寫各種指標公式,程序化交易模型,選股公式,預警公式的朋友

可聯系技術人員 QQ: 1145508240  點擊這里給我發消息進行 有償 編寫!不貴!點擊查看價格!


【字體: 】【打印文章】【查看評論

相關文章

    沒有相關內容
主站蜘蛛池模板: 亚洲婷婷综合色高清在线 | 久久国产视屏 | 国产免费一级高清淫日本片 | 亚洲成人99 | 久久日本经典片免费看 | 久久精品国产精品亚洲红杏 | 四虎四虎1515hhcom | 国产成人久久 | 青青青青久久精品国产一百度 | 在线欧美不卡 | 欧美在线视频在线观看 | 黄色高清在线观看 | 香蕉精品视频在线观看入口 | 777奇米影视网 | 性视频久久 | 亚洲欧美日韩国产精品 | 神马影院我不卡手机 | 国产亚洲精品成人久久网站 | 亚洲系列第一页 | 四虎永久地址入口 | 奇米青青草 | 亚洲日日做天天做日日谢 | 中文字幕久久久久久久系列 | 日韩一级欧美一级毛片在线 | 国产欧美精品一区二区三区四区 | 手机在线观看亚洲国产精品 | 真实国产乱子伦精品免费 | 亚洲精品久久久中文字 | 免费一级毛片在线播放视频 | 久久久香蕉视频 | 国产不卡在线看 | 国产在线伊人 | 久久网站免费观看 | 国产一区亚洲欧美成人 | 亚洲香蕉网综合久久 | 色综合久久久久久 | 国产福利视频一区 | 在线精品中文字幕福利视频 | 精品国产免费福利片 | 视频一区中文字幕 | 热99热|