From 1fb6d3d62d4311b32c36b0ba44f43c1a0521f95f Mon Sep 17 00:00:00 2001 From: discountry Date: Sat, 31 Jan 2026 16:19:19 +0800 Subject: [PATCH] Add swing trading configuration options to .env.example - Added new environment variables for swing trading, including SWING_DIRECTION and SWING_STOP_LOSS_PCT. - Updated documentation in .env.example to reflect the new swing trading parameters for better clarity and usability. --- .env.example | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.env.example b/.env.example index ed94485..d10d1c9 100644 --- a/.env.example +++ b/.env.example @@ -27,6 +27,10 @@ STANDX_SYMBOL=BTC-USD TRADE_SYMBOL=BTCUSDT # Trading pair symbol TRADE_AMOUNT=0.001 # Base order quantity (base asset, e.g. BTC) +# Swing Trading +SWING_DIRECTION=short # short | long | both +SWING_STOP_LOSS_PCT=0.05 # 0.05 = 5% + # Risk management (USD amounts unless noted) LOSS_LIMIT=0.04 # Max loss per trade in USDT before forced close TRAILING_PROFIT=0.2 # Trailing stop activation profit (USDT)