I'm new to the platform and have been setting up databases (for QuantRocket data, zipline data, and realtime data through IB). My first attempts to use get_prices after ingesting the minute data for a universe of 26 stocks has been the following message:
prices = get_prices('select-minute', start_date='2017-08-15', fields='Close')
prices.head()
HTTPError: ('500 Server Error: Internal Server Error for url: http://houston/realtime/databases', {'status': 'error', 'msg': 'an unhandled exception occurred, please check flightlog for the traceback and notify support if the problem persists as this might be a bug', 'error': '(psycopg2.OperationalError) FATAL: database "_quantrocket_v2_realtime_meta" does not exist\n\n(Background on this error at: Error Messages — SQLAlchemy 1.4 Documentation)'})
Got the same error with a call on the daily data:
prices = get_prices('usstock-daily', start_date='2020-06-01', fields=['Open', 'Close', 'High', 'Low'])
prices.head()
It looked like something to do with the realtime database, so I checked and confirmed that one had been set up to receive real-time ticks from IB. However, I'm requesting from static data that has already been downloaded, so not sure what realtime has to do with it.
Am I using this incorrectly? Happy to capture flightlog if needed.