We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e03a4ee commit ee3b453Copy full SHA for ee3b453
README.md
@@ -94,14 +94,9 @@ bitvavo_btc_eur_ticker = CCXTTickerMarketDataSource(
94
symbol="BTC/EUR",
95
)
96
97
-# Bitvavo market credentials are read from .env file, or you can
98
-# set them manually as params
99
app = create_app()
100
-app.add_market(
101
- market="BITVAVO",
102
- trading_symbol="EUR",
103
- initial_balance=100
104
-)
+# Registered bitvavo market, credentials are read from .env file by default
+app.add_market(market="BITVAVO", trading_symbol="EUR", initial_balance=100)
105
algorithm = Algorithm(name="test_algorithm")
106
107
# Define a strategy for the algorithm that will run every 10 seconds
0 commit comments