Does the Matlab iqfeed link timeseries function provide bid ask data

조회 수: 3 (최근 30일)
Chris
Chris 2013년 5월 6일
편집: Yair Altman 2020년 1월 12일
What data does the matlab iqfeed time series function return?

답변 (1개)

Yair Altman
Yair Altman 2020년 1월 12일
편집: Yair Altman 2020년 1월 12일
I believe that IQFeed provides bid/ask data only for historic ticks (HTT,HTX,HTD) queries, but not interval queries (e.g. HIT). Datafeed Toolbox's timeseries function uses HTT when the per input argument (4th arg) is empty or not specified (in which case IQFeed will return Bid/Ask data), and HIT when the per input argument (4th arg) is specified (in which case IQFeed will not return Bid/Ask data).
As an alternative, consider using my IQML (IQFeed-Matlab) connector. IQML enables both synchronous (blocking) and asynchronous (background) queries, that are fetched either serially or in parallel (using the Matlab Parallel Computing Toolbox). A simple usage example:
data = IQML('marketdepth', 'symbol','@ES#');
IQML was developed with top performance, reliability and usability in mind. IQML supports 100% of IQFeed's API functionality. It is fully documented, continuously maintained/improved, and I am happy to provide support.
Note: I am an independent software developer and not a MathWorks employee. Don't get angry at me for bringing an independent alternative to the table...

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by