Skip to content

Commit af593f1

Browse files
committed
Remove crypto and FX connections
1 parent 26a6bec commit af593f1

File tree

1 file changed

+0
-4
lines changed
  • alpaca_trade_api/alpha_vantage

1 file changed

+0
-4
lines changed

alpaca_trade_api/alpha_vantage/rest.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import requests
22
from alpha_vantage.timeseries import TimeSeries
3-
from alpha_vantage.cryptocurrencies import CryptoCurrencies
4-
from alpha_vantage.foreignexchange import ForeignExchange
53
from alpha_vantage.sectorperformance import SectorPerformances
64
from alpha_vantage.techindicators import TechIndicators
75
from 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

0 commit comments

Comments
 (0)