config: update for capital with +/-1% weekend range

This commit is contained in:
2025-12-19 23:25:51 +01:00
parent d339c0e668
commit a318bb04ce
2 changed files with 4 additions and 4 deletions

View File

@ -81,11 +81,11 @@ ZONE_TOP_HEDGE_START = Decimal("10.0")
# Order Settings
PRICE_BUFFER_PCT = Decimal("0.0015") # 0.15%
MIN_THRESHOLD_ETH = Decimal("0.012")
MIN_THRESHOLD_ETH = Decimal("0.008") # ~$24 @ 3k
MIN_ORDER_VALUE_USD = Decimal("10.0")
# Capital Safety
DYNAMIC_THRESHOLD_MULTIPLIER = Decimal("1.3")
DYNAMIC_THRESHOLD_MULTIPLIER = Decimal("1.2")
MIN_TIME_BETWEEN_TRADES = 25
MAX_HEDGE_MULTIPLIER = Decimal("1.25")

View File

@ -120,8 +120,8 @@ MONITOR_INTERVAL_SECONDS = 60
CLOSE_POSITION_ENABLED = True
OPEN_POSITION_ENABLED = True
REBALANCE_ON_CLOSE_BELOW_RANGE = True
TARGET_INVESTMENT_VALUE_USDC = 200
RANGE_WIDTH_PCT = Decimal("0.005") # do not change, or at least remember it ( 0.015 = 1.5% range width )
TARGET_INVESTMENT_VALUE_USDC = 2000
RANGE_WIDTH_PCT = Decimal("0.01") # +/- 1% (2% total width)
SLIPPAGE_TOLERANCE = Decimal("0.02") # do not change, or at least remember it ( 0.02 = 2.0% slippage tolerance)
TRANSACTION_TIMEOUT_SECONDS = 30