Originally Posted by TomH Thinking about it, the Volume at price can be calculated from the intraday price/volume tick history, assuming I can something that will backfill.
I am currently using strategies written in R to generate signals, is there a platform that would manage the data backend, and allow me to query it using SQL?
T |
Can you say more about your requirements?
Lets say you have a table with rows of volume@price. What is your requirement for time resolution on the table columns?
- daily columns
- 30 minute columns
- 5 minute columns
Have you already thought out the SQL schema for your database? Can you share those ideas?
If the SQL tables only updates once a minute, would that latency be too long for your signals?
If you only want Volume@Price to calculate VWAP, could you eliminate that requirement if some data source calculated VWAP for you?
......
Some brokers can provide "free" data using their API if you have a funded active account. example: IB (Interactive Brokers)
Is there some way to exchange data between TradeStation's EZlanguage and another program? I don't know.
You can buy realtime datafeeds from eSignal or DTN, then use a program like QCollector to do timed updates of CSV datafiles. You can write a program to poll these datafiles and update a database (like mySQL or PostgreSQL.)
Yahoo Finance and even some exchange web sites (CME) have end of day data available for free.