execution and training fixes
This commit is contained in:
13
config.yaml
13
config.yaml
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user