diff --git a/app/analytics/page.tsx b/app/analytics/page.tsx index 589cebd..8bcd0e3 100644 --- a/app/analytics/page.tsx +++ b/app/analytics/page.tsx @@ -277,19 +277,18 @@ export default function AnalyticsPage() { )} - {/* Signal Quality Version Comparison */} + {/* Indicator Version Comparison */} {versionComparison && versionComparison.versions.length > 0 && (
-

🔬 Signal Quality Logic Versions

+

� TradingView Indicator Versions

- The bot has evolved through different signal quality scoring algorithms. - This section compares their performance to enable data-driven optimization. + Comparing performance across different TradingView indicator strategies to optimize signal quality.

{versionComparison.versions.map((version, idx) => { - const isCurrentVersion = version.version === 'v3' + const isCurrentVersion = version.version === 'v6' return (
= { 'v6': 0, 'v5': 1, 'unknown': 2 } + results.sort((a, b) => { + const orderA = versionOrder[a.version] ?? 999 + const orderB = versionOrder[b.version] ?? 999 + return orderA - orderB + }) + // Get version descriptions const versionDescriptions: Record = { 'v5': 'Buy/Sell Signal strategy (pre-Nov 12)',