How to plot data from iqfeed
조회 수: 1 (최근 30일)
이전 댓글 표시
What's the easiest way to plot data from iqfeed. I think the iqfeed results in a timeseries
댓글 수: 0
답변 (1개)
Yair Altman
2020년 1월 12일
Consider using my IQML (IQFeed-Matlab) connector for this. 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('history', 'symbol','IBM');
plot(datetime({dd.Datestamp}), [dd.Close])
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.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!