File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
alpaca_trade_api/alpha_vantage Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 11import requests
22from alpha_vantage .timeseries import TimeSeries
3- from alpha_vantage .cryptocurrencies import CryptoCurrencies
4- from alpha_vantage .foreignexchange import ForeignExchange
53from alpha_vantage .sectorperformance import SectorPerformances
64from alpha_vantage .techindicators import TechIndicators
75from alpaca_trade_api .common import get_alpha_vantage_credentials
@@ -13,8 +11,6 @@ def __init__(self, api_key):
1311 self ._api_key = get_alpha_vantage_credentials (api_key )
1412 self ._session = requests .Session ()
1513 self ._timeseries = TimeSeries (key = self ._api_key )
16- self ._cryptocurrencies = CryptoCurrencies (key = self ._api_key )
17- self ._foreignexchange = ForeignExchange (key = self ._api_key )
1814 self ._sectorperformance = SectorPerformances (key = self ._api_key )
1915 self ._techindicators = TechIndicators (key = self ._api_key )
2016
You can’t perform that action at this time.
0 commit comments