Open forestsmills opened 2 years ago
pursuant to the core.py settings, my test request to the following url with my true api key : https://www.alphavantage.co/query?function=TIME_SERIES_DAILY_ADJUSTED&symbol=IBM&interval=5min&apikey=DUMB000API000KEY0005ZO
got the result:
{ "Information": "Thank you for using Alpha Vantage! This is a premium endpoint. You may subscribe to any of the premium plans at https://www.alphavantage.co/premium/ to instantly unlock all premium endpoints" }
So I'm seeing that Error that you described, again. Any fix?
used tstock air.pa -t week instead
The simple command format
tstock {stock name abbreviation}
no longer works as AlphaVantage has made theTIME_SERIES_DAILY
function premium only. TheTIME_SERIES_DAILY_ADJUSTED
function is not premium only and works fine as far as i can tell.To make tstock use
TIME_SERIES_DAILY_ADJUSTED
change line 148 of core.py fromapi_function = 'TIME_SERIES_DAILY'
toapi_function = 'TIME_SERIES_DAILY_ADJUSTED'