lwhuang 發表於 13-11-4 13:51

那個劵商軟體可以匯入txt自選股的?

假如我在別的軟體(amibroker)做出自選股列表,例如:
1323
2134
1132
就是簡單的txt,只有代碼,有那個劵商軟體可以匯入當成自選股的?或是別種只要是簡單的txt格式我可以再加一點工就行的?


stock1586 發表於 13-11-4 23:03

飛狐可以匯入選股

Sirius 發表於 13-11-5 08:54

我是利用AutoIt讀這個文字檔,讓程式Key到券商軟體的自選股輸入畫面
這樣就不必受限於券商軟體的匯入功能
此作法供參考

lwhuang 發表於 13-11-5 09:02

stock1586 發表於 13-11-4 23:03 static/image/common/back.gif
飛狐可以匯入選股

飛狐是免費券商軟體嗎?有那個劵商可以用?

lwhuang 發表於 13-11-5 09:04

Sirius 發表於 13-11-5 08:54 static/image/common/back.gif
我是利用AutoIt讀這個文字檔,讓程式Key到券商軟體的自選股輸入畫面
這樣就不必受限於券商軟體的匯入功能
...

哇~~真是高級~~~不得已的話只好這樣做了~~Sirius大是用那套?

Sirius 發表於 13-11-5 11:15

lwhuang 發表於 13-11-5 09:04 static/image/common/back.gif
哇~~真是高級~~~不得已的話只好這樣做了~~Sirius大是用那套?

玉山MVP,是嘉實XQ系列的。以前用永豐E-Leader也是採這種作法

以下AutoIt腳本供參考:
#cs ----------------------------------------------------------------------------

AutoIt Version: 3.3.6.1
Author: Sirius@coco-in.net

Script Function:
      for MVP, Import AmiBroker's Ticker List.
      v0.0-2011-5-6

#ce ----------------------------------------------------------------------------

$file = FileOpen("WatchList.tls", 0)

; Check if file opened for reading OK
If $file = -1 Then
    MsgBox(0, "Error", "Unable to open file.")
    Exit
EndIf

MsgBox(4096, "", "請稍等幾秒鐘。開始後別再動電腦滑鼠、鍵盤。", 1)

;必須先把MVP準備好,進入「修改自選商品組合」畫面。
;游標要放在正確的輸入位置
WinActivate("修改自選商品組合", "")
; Read in lines of text until the EOF is reached
While 1
    $ticker = FileReadLine($file)
    If @error = -1 Then ExitLoop
      Send($ticker & "{Enter}")
Wend

FileClose($file)

MsgBox(0,"", "作業完成!")


Sirius 發表於 13-11-5 11:20

補充說明一下
把AmiBroker的自選股匯出到WatchList.tls
然後把看盤軟體的自選股輸入畫面開好,游標放在輸入位置
啟動腳本,程式會讀入WatchList.tls,逐筆輸入股票代號並加Enter鍵

Sirius 發表於 13-11-5 11:39

本帖最後由 Sirius 於 13-11-5 11:47 編輯

自己粗略編的《AutoIt快速參考》,看這篇好了,不重複發文

頁: [1]
查看完整版本: 那個劵商軟體可以匯入txt自選股的?