Skip to content

Commit

Permalink
Refactor data sources
Browse files Browse the repository at this point in the history
  • Loading branch information
MDUYN committed Jul 1, 2024
1 parent 7b8b718 commit 07f69f2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/coinbase_trading_bot/coinbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@
class CoinBaseTradingStrategy(TradingStrategy):
time_unit = TimeUnit.SECOND
interval = 5
market_data_sources = [
"BTC/EUR-ohlcv",
"BTC/EUR-ticker"
]
market_data_sources = [coinbase_btc_eur_ticker, coinbase_btc_eur_ohlcv_2h]

def apply_strategy(self, algorithm, market_data):
pass
Expand Down

0 comments on commit 07f69f2

Please sign in to comment.