フィルターのクリア

Interactive Broker connection break mid-way, cause data request stuck in a while loop

4 ビュー (過去 30 日間)
terry dylan
terry dylan 2019 年 1 月 11 日
回答済み: Annie Leonhart 2020 年 3 月 1 日
I noticed a new problem with IB connection, sometimes when i request data (using either getdata history or timeseries ), the code stuck in the while loop:
while c.DataRequest
drawnow
end
i suspect it happend due to using " ib = ibtws('',7496)" , i may have connect + disconnect from TWS too often ?? Or did i request data too often from TWS ? the only solution to make data request work again, is to quit Matlab, and re-launch Matlab, or re-launch TWS
Anybody experienced the same problem before ?
once " ib = ibtws('',7496)" is established, how long does this connection stay?? how to make sure i keep the connection stay there in practice ?
How to reconnect with IB, without stuck in the data request while loop ?? Please help
Best regards
Terry
  2 件のコメント
Guillaume
Guillaume 2020 年 1 月 23 日
Peer Boerretzen's non-answer moved here:
Hi I am experiencing exact same problem.
For me it happens when IBTWS automatically restarts every night and matlab get stuck in the while loop you mention when trying to request 'timeseries' data. Have tried with both off-line and on-line version of ibtws and with gateway but same problem.
Would also really apprechiate a solution to this problem
Annie Leonhart
Annie Leonhart 2020 年 2 月 8 日
Download iB Gateway and run it with the log on. Should clearly tell you what’s happening.

サインインしてコメントする。

回答 (1 件)

Annie Leonhart
Annie Leonhart 2020 年 3 月 1 日
At the end of your code close the connection. It only needs to be open when requesting. If you leave it open it'll timeout and you'll try to request more data with the same client ID and it will not run.
simply add to the end of your code and it'll work smoothly every time.
close(ib)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by