docs: Update minimum quality score from 60 to 81 across documentation
- Updated .github/copilot-instructions.md key constraints and signal quality system description - Updated config/trading.ts minimum score from 60 to 81 with v8 performance rationale - Updated SIGNAL_QUALITY_SETUP_GUIDE.md intro to reflect 81 threshold - Updated SIGNAL_QUALITY_OPTIMIZATION_ROADMAP.md current system section - Updated BLOCKED_SIGNALS_TRACKING.md quality score requirements Context: After v8 Money Line indicator deployed with 0.6% flip threshold, system achieving 66.7% win rate with average quality score 94.2. Raised minimum threshold from 60 to 81 to maintain exceptional selectivity. Current v8 stats: 6 trades, 4 wins, $649.32 profit, 94.2 avg quality Account growth: $540 → $1,134.92 (110% gain in 2-3 days)
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(2, "Bars to confirm after flip", minval=0, maxval=3, group=groupTiming, tooltip="V8: Wait X bars after flip to confirm trend change. Filters rapid flip-flops.")
|
||||
flipThreshold = input.float(0.8, "Flip threshold %", minval=0.0, maxval=2.0, step=0.1, group=groupTiming, tooltip="V8: Require price to move this % beyond line before flip. Increased to 0.8% to filter small bounces.")
|
||||
flipThreshold = input.float(0.6, "Flip threshold %", minval=0.0, maxval=2.0, step=0.1, group=groupTiming, tooltip="V8: Require price to move this % beyond line before flip. Set to 0.6% to filter small bounces while catching real reversals.")
|
||||
|
||||
// Entry filters (optional)
|
||||
groupFilters = "Entry filters"
|
||||
|
||||
Reference in New Issue
Block a user