Skip to content

Commit 2581ae0

Browse files
committed
Refactor data sourcing
1 parent 05b421f commit 2581ae0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

examples/bitvavo_trading_bot/bitvavo.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
create_app, PortfolioConfiguration, Algorithm, SYMBOLS, RESOURCE_DIRECTORY
66

77
"""
8-
Bitvavo trading bot example with market data sources of bitvavo.
8+
Bitvavo trading bot example with market data sources of bitvavo.
99
Bitvavo does not requires you to have an API key and secret key to access
10-
their market data
11-
12-
If you just want to backtest your strategy, you don't need to
13-
add a market credential. If your running your strategy live,
10+
their market data. If you just want to backtest your strategy,
11+
you don't need to add a market credential. If your running your strategy live,
1412
you need to add a market credential to the app, that accesses your
1513
account on bitvavo.
1614
"""
15+
16+
1717
# Define your market credential for bitvavo
1818
bitvavo_market_credential = MarketCredential(
1919
api_key="<your_api_key>",
@@ -72,4 +72,3 @@ def apply_strategy(self, algorithm, market_data):
7272

7373
if __name__ == "__main__":
7474
app.run()
75-

0 commit comments

Comments
 (0)