feat: v11.1 faster trend detection - flipThreshold 0.25→0.15%
- 40% faster flip detection (0.25% → 0.15%) - Catches big moves earlier (massive waterfall example) - More responsive on 5-minute timeframe - Quality filters protect against false signals User validation: 'thats looking better' - signals now appear earlier Evidence: Previously missed large downtrend, now catching at the top
This commit is contained in:
@@ -41,7 +41,7 @@ macdSigLen = input.int(9, "Signal", minval=1, inline="macdLens")
|
||||
// Signal timing (ALWAYS applies to all signals)
|
||||
groupTiming = "Signal Timing"
|
||||
confirmBars = input.int(0, "Bars to confirm after flip", minval=0, maxval=3, group=groupTiming, tooltip="V11: Set to 0 for immediate signals on flip. Increase to wait X bars for confirmation.")
|
||||
flipThreshold = input.float(0.25, "Flip threshold %", minval=0.0, maxval=2.0, step=0.1, group=groupTiming, tooltip="V11 OPTIMIZED: 0.25% (from exhaustive sweep) - 10× better than v9 baseline.")
|
||||
flipThreshold = input.float(0.15, "Flip threshold %", minval=0.0, maxval=2.0, step=0.1, group=groupTiming, tooltip="V11.1 USER-VALIDATED: 0.15% - 40% faster trend detection for 5-minute chart. Catches big moves earlier while filters block false signals.")
|
||||
|
||||
// Entry filters (optional)
|
||||
groupFilters = "Entry filters"
|
||||
|
||||
Reference in New Issue
Block a user