您現在的位置:程序化交易>> 期貨公式>> 文華財經>> 文華財經知識>>正文內容

早上9:00開盤沒有出現信號 [文華財經]

:="" none;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">BK:="" none;="" float:="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" display:="" inline="inline" !important;="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">:買開:="" none;="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="" /> :="" none;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">BP:="" none;="" float:="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" display:="" inline="inline" !important;="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">:買平:="" none;="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="" /> :="" none;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">SK:="" none;="" float:="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" display:="" inline="inline" !important;="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">:賣開:="" none;="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="" /> :="" none;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">SP:="" none;="" float:="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" display:="" inline="inline" !important;="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'="">:賣平:="" none;="" float:="" font-weight:="" 400;="" color:="" rgb(68,68,68);="" font-style:="" orphans:="" 2;="" widows:="" display:="" inline="inline" !important;="" letter-spacing:="" background-color:="" rgb(255,255,255);="" text-indent:="" font-variant-ligatures:="" font-variant-caps:="" -webkit-text-stroke-width:="" text-decoration-style:="" initial;="" text-decoration-color:="" initial'=""> 一,這些指令怎么加?在哪里加?

二,如何指定交易的品種?

三,如何關聯賬戶?

?

?

  • 網友回復:

    模型出信號自動下單,需要使用wh8量化軟件實現,wh6看盤軟件不支持的。

    ?

    wh8是收費軟件,在文華官網下載和購買:

    ?

    https://www.wenhua.com.cn/?

    ?

    具體用法進入wh8菜單-》幫助-》軟件說明書,量化交易基本流程部分了解。

    ?

    寫入指令參考:

    MA1:MA(CLOSE,5);
    MA2:MA(CLOSE,10);
    MA3:MA(C,60);
    MA1,COLORWHITE;
    MA2,COLORYELLOW;
    MA3,COLORRED;

    ?


    F:=VALUEWHEN(TIME=2100,O);//定義21:00為開盤價


    DIFF := EMA(CLOSE,12) - EMA(CLOSE,26);
    DEA := EMA(DIFF,9);
    //2*(DIFF-DEA),COLORSTICK;
    //以上三行是定義MACD指標代碼

    ?


    VAL2:=(C>=MA2)&&C>=MA3;//10、60日線上紅豆;
    VAL3:=(C<=MA2)&&C<MA3;//10、60日線下綠豆;


    CROSS(VAL2,0.5)||VAL2&&DAYBARPOS<REF(VALUEWHEN(VAL2,DAYBARPOS),1) ||VAL2&&TIME=0900,BPK;
    CROSS(VAL3,0.5)||VAL3&&DAYBARPOS<REF(VALUEWHEN(VAL3,DAYBARPOS),1) ||VAL3&&TIME=0900,SPK;
    AUTOFILTER;

    ?

  •  

    有思路,想編寫各種指標公式,交易模型,選股公式,還原公式的朋友

    可聯系技術人員 QQ: 262069696  點擊在線交流或微信號:cxh99cxh99  進行 有償收費 編寫!

    怎么收費,代編流程等詳情請點擊閱讀!

    (注:由于人數限制,QQ或微信請選擇方便的一個聯系我們就行,加好友時請簡單備注下您的需求,否則無法通過。謝謝您!)


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

    相關文章

      沒有相關內容
    主站蜘蛛池模板: 97049.com| 好多水好硬好紧好爽视频| 成人网视频免费播放| 好男人影视社区www在线观看| 国内剧果冻传媒在线观看网站| 国产国语对白露脸正在播放 | 本子库里番acg全彩无遮挡| 日韩a在线观看| 女人高潮内射99精品| 国产精品免费看久久久无码| 国产亚洲欧美日韩俺去了| 国内外成人在线视频| 国产日产欧洲无码视频| 午夜精品久久久久久中宇| 亚洲日产2021三区| 中文字幕日本精品一区二区三区| 99在线精品视频在线观看| 鲁啊鲁啊鲁在线视频播放| 男女性爽大片视频男女生活| 最近中文电影在线| 娇bbbb搡bbbb| 国产成人一区二区三区电影网站| 免费人成年激情视频在线观看| 亚洲av高清一区二区三区| 一级做a爰片久久毛片看看| 欧美日韩第一页| 男女一进一出抽搐免费视频| 日韩免费视频网站| 在线中文字幕日韩欧美| 国产亚洲欧美日韩俺去了| 亚洲欧美一区二区久久| 中文字幕丰满孑伦| 自拍偷拍校园春色| 揄拍自拍日韩精品| 色综合色综合色综合色综合网| 青青国产成人久久激情911| 色噜噜一区二区三区| 玉蒲团之天下第一| 欧美另类第一页| 日韩午夜电影网| 成人毛片在线视频|