|
本帖最後由 kuolung 於 19-12-17 10:35 編輯
在這先回報大家,我目前用 群益的 api 寫 data plugin 收報價,然後用 元大的 下單 api 寫成
afl plugin 直接下單,所以基本上程式都沒有出Amibroker
下單的方式如下
把我寫好的 afl plugin --> dll 檔放在 Amibroker/plugin 的資料夾中
然後就
if (lastvalue(buy) == 1) {
OrderStatus = mPlaceOrder("01", "0", OrderBranchID , OrderAccount , "", "" , "B", Ticker ,
"" , TimePosStr , "" , "M" , "I" , "" , "" ) ;
}
就下單出去了
只是元大的 64bit 的下單 api 有一點問題,我用限價單都一直回報,價格有問題,所以目前都只用市價單
報價的也是
將 data plugin dll 檔,放在 plugin 中,
然後在 database 中選我的 dataplugin 就可以了
dataplugin
|
|