Skip to content

Commit

Permalink
Remove crypto and FX connections
Browse files Browse the repository at this point in the history
  • Loading branch information
ttt733 committed Feb 6, 2020
1 parent 26a6bec commit af593f1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions alpaca_trade_api/alpha_vantage/rest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import requests
from alpha_vantage.timeseries import TimeSeries
from alpha_vantage.cryptocurrencies import CryptoCurrencies
from alpha_vantage.foreignexchange import ForeignExchange
from alpha_vantage.sectorperformance import SectorPerformances
from alpha_vantage.techindicators import TechIndicators
from alpaca_trade_api.common import get_alpha_vantage_credentials
Expand All @@ -13,8 +11,6 @@ def __init__(self, api_key):
self._api_key = get_alpha_vantage_credentials(api_key)
self._session = requests.Session()
self._timeseries = TimeSeries(key=self._api_key)
self._cryptocurrencies = CryptoCurrencies(key=self._api_key)
self._foreignexchange = ForeignExchange(key=self._api_key)
self._sectorperformance = SectorPerformances(key=self._api_key)
self._techindicators = TechIndicators(key=self._api_key)

Expand Down

0 comments on commit af593f1

Please sign in to comment.