Sell When Up? Cut When Down? Unlocking Freqtrade’s Entry & Exit Logic
🎯 minimal_roi — Time-Based Take-Profit
minimal_roi — Time-Based Take-Profitminimal_roi = {
"30": 0.01, # After 30 min, take profit at +1%
"20": 0.02, # After 20 min, take profit at +2%
"0": 0.04 # Immediately take profit if +4% is hit
}🛑 stoploss — Fixed Loss Threshold
stoploss — Fixed Loss Thresholdstoploss = -0.10 # Stop out at -10%🚪 use_exit_signal — Enable Custom Exit Signals
use_exit_signal — Enable Custom Exit Signals💰 exit_profit_only — Exit Only in Profit
exit_profit_only — Exit Only in ProfitExample
Current Profit
RSI > 70 (exit=1)
Sell?
🎚️ exit_profit_offset — Profit Offset Threshold
exit_profit_offset — Profit Offset Threshold🧠 Example Strategy Snippet
⚙️ use_custom_stoploss — Dynamic Stoploss
use_custom_stoploss — Dynamic Stoploss✅ Quick Reference
Parameter
Function
Recommended Value
PreviousLimit Orders Not Filling, Market Orders Slipping? Understanding Freqtrade’s Order SystemNextpit
Last updated