13 lines
405 B
Python
13 lines
405 B
Python
from freqtrade.constants import Config
|
|
|
|
|
|
def get_dry_run_wallet(config: Config) -> int | float:
|
|
"""
|
|
Return dry-run wallet balance in stake currency from configuration.
|
|
This setup also supports dictionary mode for dry-run-wallet.
|
|
"""
|
|
if isinstance(_start_cap := config["dry_run_wallet"], float | int):
|
|
return _start_cap
|
|
else:
|
|
return _start_cap.get("stake_currency")
|