Hi all, I've spent a few hours perusing through the forums but there's so much content and I still haven't found exactly what I am looking for. I am hoping somebody can point me in the right direction. * I'm looking to scan in real-time 1,000 stocks in search of a certain trading set up. * Would like to be able to code my logic locally on my desktop / server. * Send notifications when set up identified (for manual consideration and manual trading). What is the simplest way of doing this? Thank you all in advance for your feedback.
pay for a datafeed subscribe to tickers code your logic code your notifications search "stock data feed providers" on google
Are these "setups" based on charting studies or other requirements? Our Lightscan Tool can't be accessed with the API and does not have charting studies, but has other tools and settings.
Thanks for this - I've come across these data feeds as ones that support stocks and futures iqfeed, barchart, cqg, nanex. Are any of these more suitable to what I am looking to do? Is there something that has more examples of written code so that I can use existing templates and adapt them? Would subscribing to tickers require that I store data in a local database or can it be stored in memory as data comes in? Thank you
Does the code sit locally on my server or will it sit on their servers? I would like to have all logic performed locally
every provider will give examples. and you do not need a database. subscribing is similar no matter what data feed used Code: client=new ImplementedClient(){ public void onMessage(){ /* your code here*/ } } client.subscribe(['IBM','MSFT'])
Is this for a do it yourself trade bot?. I chose to have it in memory with data persistence on Cassandra but I don't have to read unless needed.