From 7e71925811de06fe42b4bc1a102dc3a40be06026 Mon Sep 17 00:00:00 2001 From: cheque-some Date: Tue, 7 Apr 2020 20:20:18 -0400 Subject: [PATCH] Removing get_batch_stock_quotes from examples `get_batch_stock_quotes` was removed from the API, so removing it from examples. --- Alpha vantage examples.ipynb | 85 ------------------------------------ 1 file changed, 85 deletions(-) diff --git a/Alpha vantage examples.ipynb b/Alpha vantage examples.ipynb index a3ace4b..3d03486 100644 --- a/Alpha vantage examples.ipynb +++ b/Alpha vantage examples.ipynb @@ -275,91 +275,6 @@ "# Working with batch quotes" ] }, - { - "cell_type": "code", - "execution_count": 29, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
1. symbol2. price3. volume4. timestamp
count3333
unique3312
topFB172.0600--2018-01-03 15:59:58
freq1132
\n", - "
" - ], - "text/plain": [ - " 1. symbol 2. price 3. volume 4. timestamp\n", - "count 3 3 3 3\n", - "unique 3 3 1 2\n", - "top FB 172.0600 -- 2018-01-03 15:59:58\n", - "freq 1 1 3 2" - ] - }, - "execution_count": 29, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# It is still a TimeSeries call\n", - "ts.output_format='pandas'\n", - "data, meta_data = ts.get_batch_stock_quotes(symbols=('MSFT', 'FB', 'AAPL'))\n", - "data.describe()" - ] - }, { "cell_type": "code", "execution_count": 31,