Using QS I created a Custom Intraday DB "t_ad" and created a downloader to download real time transaction data from one of major
US Exchanges.
DB has following fields, Symbol, Date and Time (M/D/YYYY HH:MM:ss) , bclose(bar_close),bopen,bhigh, blow,bvolume,SessionHigh, SessionLow, tick.
Data is downloaded & stored properly in the DB every few seconds for the defined set of stocks.
How can chart that data with QS intraday charting?
What do I need to do to be able to draw/chart that data using QS Intraday charting.
In order for custom database data to used, your stock/symbol must have EOD or Intraday data.
Then you can use the GetData function:
GetData("database name", "field name")
Why don't you save this data in the intraday database?
You can store date, time, close, open, high, low and volume in the intraday database and sessionHigh, sessionLow and tick in a custom database.