How to plot data from iqfeed

3 Ansichten (letzte 30 Tage)
Chris
Chris am 20 Dez. 2018
Beantwortet: Yair Altman am 12 Jan. 2020
What's the easiest way to plot data from iqfeed. I think the iqfeed results in a timeseries

Antworten (1)

Yair Altman
Yair Altman am 12 Jan. 2020
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])
IBM history fetched from IQFeed via IQML
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.

Community Treasure Hunt

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

Start Hunting!

Translated by