您現(xiàn)在的位置:程序化交易>> 期貨公式>> 文華財經(jīng)>> 文華財經(jīng)知識>>正文內(nèi)容

早上9:00開盤沒有出現(xiàn)信號 [文華財經(jīng)]

:="" 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'=""> 一,這些指令怎么加?在哪里加?

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

三,如何關(guān)聯(lián)賬戶?

?

?

  • 網(wǎng)友回復(fù):

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

    ?

    wh8是收費軟件,在文華官網(wǎng)下載和購買:

    ?

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

    ?

    具體用法進(jìn)入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指標(biāo)代碼

    ?


    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;

    ?

  •  

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

    可聯(lián)系技術(shù)人員 QQ: 262069696  點擊在線交流或微信號:cxh99cxh99  進(jìn)行 有償收費 編寫!

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

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


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

    相關(guān)文章

      沒有相關(guān)內(nèi)容
    主站蜘蛛池模板: 久久综合第一页| 免费观看成人毛片| 7878成人国产在线观看| 护士撩起裙子让你桶的视频 | 日本免费精品一区二区三区| 亚洲爆乳少妇无码激情| 给我免费播放片黄色| 国产无遮挡色视频免费视频| 99re热久久这里只有精品首页| 成人精品视频一区二区三区| 久久这里只精品99re免费| 波多野结衣porn| 午夜爽爽爽视频| 久久久久久久99视频| 欧美毛多水多肥妇| 午夜dj免费在线观看| 黑人一个接一个上来糟蹋| 国产麻传媒精品国产AV| 一本久到久久亚洲综合| 日本福利视频一区| 亚洲免费人成视频观看| 狠狠色丁香婷婷| 国产欧美日韩综合精品一区二区| avtt天堂网手机版亚洲| 成成人看片在线| 久久青草免费91观看| 欧美精品一区二区三区在线| 全彩里番acg里番本子h| 草莓视频黄色在线观看| 国产欧美在线观看精品一区二区 | 国产一区二区三区内射高清| 九九视频在线观看6| 国产老肥熟xxxx| a毛片免费观看| 思思久久99热只有频精品66| 久久er这里只有精品| 日韩电影免费观看| 亚洲乱色伦图片区小说| 美女隐私免费视频看| 国产嫖妓一区二区三区无码| 18到20女人一级毛片|