Listener for receiving real time data through DataFeed Toolbox
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm trying to receive data from IQFeed using the Datafeed toolbox.
I would like to listen to real time data, and the API seems to provide for that, since I can specify an EventListener and an EventHandler. However, I have not been able to set this up correct, I can get the EventListener registered and activated once, but the handler is never called.
Can anyonme point to an example that works for receiving real time data and get code executed whenever new data arrives.
Thanks!
0 commentaires
Réponses (1)
Yair Altman
le 12 Jan 2020
Consider using my IQML (IQFeed-Matlab) connector as an alternative. 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','XIV,AAPL,MSFT,GOOG', 'UseParallel',true);
IQML was developed with top performance, reliability and usability in mind, and supports 100% of IQFeed's API functionality. It is fully documented, continuously maintained/improved, and I am happy to provide support.
Details: https://undocumentedmatlab.com/IQML or https://www.mathworks.com/matlabcentral/fileexchange/69814-IQML
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...
0 commentaires
Voir également
Catégories
En savoir plus sur Database Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!