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.
2 parents 47326f2 + 841c90e commit 43e24fcCopy full SHA for 43e24fc
lib/bot.py
@@ -2312,6 +2312,8 @@ def get_price_log(
2312
try:
2313
response: requests.Response = session.get(query, timeout=30)
2314
status: int = response.status_code
2315
+ if status == 404:
2316
+ return (False, [])
2317
if status != 200:
2318
response.raise_for_status()
2319
else:
utils/prove-backtesting.py
@@ -331,7 +331,7 @@ def write_optimized_strategy_config(
331
332
log_msg(f" wallet: {old_wallet}")
333
334
- z: Dict[str, Any] = x | _tickers
+ z: Dict[str, Any] = _tickers | x
335
_tickers = z
336
log_msg(f" tickers: {_tickers}")
337
0 commit comments