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

早上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或微信請選擇方便的一個聯系我們就行,加好友時請簡單備注下您的需求,否則無法通過。謝謝您!)


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

    相關文章

      沒有相關內容
    主站蜘蛛池模板: 最近韩国电影免费高清播放在线观看| 被夫上司强迫的女人在线| 精品人妻少妇嫩草AV无码专区| 国产精品无码久久久久| 中国凸偷窥XXXX自由视频| 欧洲高清一区二区三区试看| 免费一区区三区四区| 蜜桃视频一日韩欧美专区| 国产精品亚欧美一区二区三区| www.日本在线观看| 欧美日韩视频在线播放| 咪咪色在线视频| 激情欧美人xxxxx| 国语对白刺激做受xxxxx在线| 中文字幕专区在线亚洲| 波多野结衣伦理电影| 国产SM主人调教女M视频| 中文字幕亚洲色图| 天堂а√8在线最新版在线| 中日韩精品视频在线观看| 欧美xxxx18动漫| 亚洲综合无码一区二区| 网站大全黄免费| 国产另类TS人妖一区二区| 2021国产精品久久| 天天操夜夜操天天操| 中文字幕日本最新乱码视频| 最近中文国语字幕在线播放视频| 亚洲精品午夜国产va久久成人| 精品无码人妻一区二区三区不卡| 国产在线视频不卡| 中国xxxxx高清免费看视频| 天天干天天爽天天操| 中文字幕亚洲欧美日韩不卡| 日韩欧美国产亚洲| 亚洲成a人片在线观看天堂无码| 萌白酱福利视频| 国产玉足榨精视频在线观看| 97影院九七理论片男女高清| 嫩草影院在线观看精品视频| 中文字幕精品一区|