Are there free realtime financial data feeds since the demise of OpenQuant? [closed]

I think you’ll find all you need to know by looking at this question: source of historical stock data I don’t know of any free data feeds other than Yahoo!, but it doesn’t offer tick-by-tick data, it only offers 1 minute intervals with a 15 minute delay. If you want to use an already existing … Read more

Are there any constantly updating RSS feed services to use for testing, or just very active RSS feeds?

I really needed this service, so I set one up at http://lorem-rss.herokuapp.com/ The documentation is at that link, as well as in the GitHub repository below. You can tweak it using GET parameters to update every N seconds, minutes, hours, days, months or years. But I haven’t yet tested it comprehensively so I’m not sure … Read more

How to force a script reload and re-execute?

How about adding a new script tag to <head> with the script to (re)load? Something like below: <script> function load_js() { var head= document.getElementsByTagName(‘head’)[0]; var script= document.createElement(‘script’); script.src=”https://stackoverflow.com/questions/9642205/source_file.js”; head.appendChild(script); } load_js(); </script> The main point is inserting a new script tag — you can remove the old one without consequence. You may need to add … Read more