alpha_vantage
alpha_vantage copied to clipboard
A python wrapper for Alpha Vantage API for financial data.
i could be doing something wrong, but i'm getting JSONDecoderError when trying to use extended ts api: envs\DataStore\lib\json\decoder.py in raw_decode(self, s, idx) 353 obj, end = self.scan_once(s, idx) 354 except...
Looking at [the code](https://github.com/RomelTorres/alpha_vantage/blob/develop/alpha_vantage/fundamentaldata.py) of `fundamentaldata.py`, it seems like other than raising an error in case `output_format` is set to `csv`, the constructor is ignoring the output format preferences altogether,...
Hi, I'm trying to get all the available values for Cryptocurrencies but the outputsize option is not available here, so I'm only getting last 1000 entries/dates. I also tried using...
I've followed the syntax of the previous methods to implement this one. I tested locally and it works. Oh, the .gitignore was updated to not include my testing files hehe...
Reading currencies, alphavantage returns a greeting note ("welcome") and this note raises an error in alphavantage.py line 363. ``` elif "Note" in json_response and self.treat_info_as_error: raise ValueError(json_response["Note"]) ``` For this...
Fixes an issue where certain endpoints would be processed as `pandas` when in fact the user asked for `json`. _(This looks like something that resulted from accidental copy-pasting)_
Hi, Could you please help me to understand an information? I have already used the DAILY ADJUSTED (TIME_SERIES_DAILY_ADJUSTED) endpoint, but I see that one stock is different from other quote...
This keeps happening even if I'm putting 30 second sleeps in between the calls being made. Here's the code I have ` from alpha_vantage.timeseries import TimeSeries ts = TimeSeries(key='KEY', output_format='pandas')...
Added the funtion for earnings per share data and a unit test for that function. Hopefully this time there wont be a merge issue like: #285 Hope this is all...