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

修改了版主代碼,發出全平模塊(增加下信息資源) [金字塔]

  • 咨詢內容: function GetHoldStr(sAccount) dim i dim BuyHold dim BuyCost dim SellHold dim SellCost dim CurCode dim CurMarket   On Error resume Next
     HoldingCount=Order.Holding2(sAccount)  If HoldingCount>0 then   For i=0 to HoldingCount-1    Call Order.HoldingInfo2(i,BuyHolding,BuyCost,BuyTodayHolding,SellHolding,SellCost,SellTodayHolding,PNL,UseMargin,Code,Market,sAccount)    CurCode=Code    CurMarket=Market    BuyHold=BuyHolding    SellHold=SellHolding    HoldStr=HoldStr & CurCode    if BuyHold>0 then      call order.sell(1,BuyHold,0,0,CurCode,CurMarket,sAccount,0)    end if    if SellHold>0 then       call order.sellshort(1,SellHold,0,0,CurCode,CurMarket,sAccount,0)       end if     Next  End If End function [此貼子已經被作者于2013-5-27 11:07:34編輯過]

     

  • 金字塔客服:

    說明詳細一些,另外測試過了?

    搞好了加精

     

  • 用戶回復: 測試過了  稍后加上說明

     

  • 網友回復: '此模塊中sAccount為傳遞賬號,對按照某個時間(比如15:30)平全部倉位的用戶可以直接調用此模塊,用call語句就行。可以直接放在模塊中 '也可以復制代碼到大家做需要的窗體中進行調用。

    第一種:'創建了一個窗體,加上一個按鈕來觸發,導入附件后就能使用

    Sub UserForm1_CommandButton1_Click()'輸入賬號    call getholdstr(803156)    End Sub

    '該模塊主要用來保存宏主執行主函數,不要拿做他用


    function GetHoldStr(sAccount)'定義所需變量 dim i dim BuyHold dim BuyCost dim SellHold dim SellCost dim CurCode dim CurMarket   On Error resume Next'索取持倉合約數 HoldingCount=Order.Holding2(sAccount)'遍歷所有持倉,索取多空頭和持倉合約  If HoldingCount>0 then   For i=0 to HoldingCount-1    Call Order.HoldingInfo2(i,BuyHolding,BuyCost,BuyTodayHolding,SellHolding,SellCost,SellTodayHolding,PNL,UseMargin,Code,Market,sAccount)    CurCode=Code    CurMarket=Market    BuyHold=BuyHolding    SellHold=SellHolding    HoldStr=HoldStr & CurCode'取得多頭持倉,按照事件返回的手數和相關信息進行平多    if BuyHold>0 then      call order.sell(1,BuyHold,0,0,CurCode,CurMarket,sAccount,0)    end if'取得空頭持倉,按照事件返回的手數和相關信息進行平空    if SellHold>0 then       call order.sellshort(1,SellHold,0,0,CurCode,CurMarket,sAccount,0)       end if     Next  End If End function
     下載信息  [文件大小:   下載次數: ]點擊瀏覽該文件:userform1.rar



    第二種 適合用vba做日內的,'大家也可把function函數直接放到大家已經編輯好的代碼中加上定時器來讀取時間  (定時器到收盤15:00進行全平操作)  

    sub application_vbastart()   '設置定時器,每秒刷新       call application.SetTimer(1,1000)end sub
    sub application_timer(id)    application.MsgOut(right(now,8))    if  id=1 then         '輸入自己要日內平倉時間 ,now函數返回的時間是有日期的 我們用right方法去掉日期。就順利取得時分秒,^,^                   if right(now,8)>="13:23:30" then     '輸入自己的賬號               call GetHoldStr(888)                      end if                     end if end sub



    sub application_vbaend()'刪除定時器,釋放資源    call application.KillTimer(1)    end sub
    '插入模塊function GetHoldStr(sAccount)'定義所需變量 dim i dim BuyHold dim BuyCost dim SellHold dim SellCost dim CurCode dim CurMarket   On Error resume Next'索取持倉合約數 HoldingCount=Order.Holding2(sAccount)'遍歷所有持倉,索取多空頭和持倉合約  If HoldingCount>0 then   For i=0 to HoldingCount-1    Call Order.HoldingInfo2(i,BuyHolding,BuyCost,BuyTodayHolding,SellHolding,SellCost,SellTodayHolding,PNL,UseMargin,Code,Market,sAccount)    CurCode=Code    CurMarket=Market    BuyHold=BuyHolding    SellHold=SellHolding    HoldStr=HoldStr & CurCode'取得多頭持倉,按照事件返回的手數和相關信息進行平多    if BuyHold>0 then      call order.sell(1,BuyHold,0,0,CurCode,CurMarket,sAccount,0)    end if'取得空頭持倉,按照事件返回的手數和相關信息進行平空    if SellHold>0 then       call order.sellshort(1,SellHold,0,0,CurCode,CurMarket,sAccount,0)       end if     Next  End If End function
     下載信息  [文件大小:   下載次數: ]點擊瀏覽該文件:userform2.rar

     

  • 網友回復: 看來我那個帖子已經深入人心了,還能做舉一反三,進行修改了,擴展了,本人深感榮幸。希望有更多的人能熟練掌握vba開發。

 

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

可聯系技術人員 QQ: 1145508240  有需要幫忙請點擊這里留言!!!進行 有償 編寫!不貴!點擊查看價格!


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

相關文章

    沒有相關內容
主站蜘蛛池模板: 99久re热视频这里只有精品6| 毛片免费观看的视频| 老司机福利在线免费观看| 精品国产成人亚洲午夜福利| 精品久久久久久中文字幕大豆网 | 国产精品无码免费专区午夜| 国产精品无码久久久久| 国产女人的高潮大叫毛片| 国产一区二区三精品久久久无广告| 十分钟在线观看免费视频www| 亚洲精品视频网| 亚洲AV无一区二区三区久久 | 樱桃视频影院在线播放免费下载| 日本高清免费不卡在线| 小h片在线播放| 国产精品国产色综合色| 妖精www视频在线观看高清| 国产精品综合色区在线观看| 国产一级二级在线观看| 亚洲砖码砖专无区2023| 久久精品94精品久久精品| 周妍希美乳三点尽露四季图片| 免费一级毛片清高播放| 亚洲一级免费毛片| 一级毛片短视频| 超清首页国产亚洲丝袜| 美女的胸又www又黄的网站| 欧美国产日产片| 怡红院老首页主页入口| 国产精品一区二区av不卡| 午夜a级理论片在线播放| 亚洲国产人成在线观看| 一个人看的视频www在线| 黄网站免费在线| 波霸在线精品视频免费观看| 浪货一天不做就难受呀| 日韩一区二区三区精品| 在线观看毛片网站| 国产黄色一级片| 啊好大好爽视频| 久操免费在线观看|