Skip to content

Commit b92b2be

Browse files
committed
default max_cycle to 3
1 parent ad64056 commit b92b2be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
# start arbitrage detection
2222
print("Scanning...")
23-
exchange_name = "cryptocom" # allow pickable exchange_id from https://github.com/ccxt/ccxt/wiki/manual#exchanges
23+
exchange_name = "binanceus" # allow pickable exchange_id from https://github.com/ccxt/ccxt/wiki/manual#exchanges
2424

25-
best_opportunities, best_profit = asyncio.run(detector.run_detection(exchange_name))
25+
best_opportunities, best_profit = asyncio.run(detector.run_detection(exchange_name, max_cycle=3))
2626

2727

2828
def opportunity_symbol(opportunity):

0 commit comments

Comments
 (0)