execution and training fixes

This commit is contained in:
Dobromir Popov
2025-07-04 20:45:39 +03:00
parent 0c4c682498
commit ed42e7c238
10 changed files with 879 additions and 79 deletions

View File

@ -156,10 +156,12 @@ mexc_trading:
enabled: true
trading_mode: simulation # simulation, testnet, live
# FIXED: Meaningful position sizes for learning
base_position_usd: 25.0 # $25 base position (was $1)
max_position_value_usd: 50.0 # $50 max position (was $1)
min_position_value_usd: 10.0 # $10 min position (was $0.10)
# Position sizing as percentage of account balance
base_position_percent: 5.0 # 5% base position of account
max_position_percent: 20.0 # 20% max position of account
min_position_percent: 2.0 # 2% min position of account
leverage: 50.0 # 50x leverage (adjustable in UI)
simulation_account_usd: 100.0 # $100 simulation account balance
# Risk management
max_daily_trades: 100
@ -167,6 +169,9 @@ mexc_trading:
max_concurrent_positions: 3
min_trade_interval_seconds: 5 # Reduced for testing and training
# Symbol restrictions - ETH ONLY
allowed_symbols: ["ETH/USDT"]
# Order configuration
order_type: market # market or limit