Closes #017 - Fix KaTeX rendering corruption and inject detailed blueprint contents

This commit is contained in:
Antigravity Agent
2026-06-14 12:41:18 +02:00
parent 94ccf63a38
commit 2f0599a3cd
6 changed files with 154 additions and 72 deletions

View File

@@ -1,5 +1,7 @@
import React from 'react';
import { Settings, X } from 'lucide-react';
import 'katex/dist/katex.min.css';
import { BlockMath, InlineMath } from 'react-katex';
interface ScannerBlueprintModalProps {
isOpen: boolean;
@@ -25,7 +27,7 @@ export default function ScannerBlueprintModal({ isOpen, onClose }: ScannerBluepr
return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-slate-900/85 backdrop-blur-md p-4 sm:p-6 md:p-8 animate-fade-in">
<div className="bg-slate-900 border border-slate-800/80 rounded-3xl w-full max-w-4xl h-[80vh] flex flex-col overflow-hidden shadow-2xl relative text-slate-350">
<div className="bg-slate-900 border border-slate-800/80 rounded-3xl w-full max-w-5xl h-[85vh] flex flex-col overflow-hidden shadow-2xl relative text-slate-350">
{/* Modal Header */}
<div className="flex justify-between items-center px-6 py-4 bg-slate-950/45 border-b border-slate-800/60">
@@ -49,30 +51,50 @@ export default function ScannerBlueprintModal({ isOpen, onClose }: ScannerBluepr
<div className="border-b border-slate-800/80 pb-3">
<h3 className="text-base font-bold text-slate-200">Scanner Metrics &amp; Signals</h3>
<p className="text-xs text-slate-400 mt-1">Operational details of the anomaly scanner and valuation filters.</p>
<p className="text-xs text-slate-400 mt-1">Operational details of the anomaly scanner, technical velocity thresholds, and valuation overlays.</p>
</div>
{/* Core Mechanics */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<div className="p-5 rounded-2xl border border-slate-800/60 bg-slate-950/40 space-y-3 flex flex-col">
<h4 className="text-xs font-bold text-emerald-400 uppercase tracking-wider font-mono">1. 52-Week Drop Mechanics</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Filters the stock database for liquid companies trading at significant percentage discounts relative to their 52-week peak. Isolates severe drawdowns caused by asymmetric market overreactions.
</p>
<div className="text-xs text-slate-400 leading-relaxed font-sans space-y-2 flex-1">
<p>
Filters the stock database for liquid companies trading at significant percentage discounts relative to their 52-week peak. The core threshold computes:
</p>
<BlockMath math="\Delta_{52w} = \frac{P_{\text{current}} - P_{52w\_high}}{P_{52w\_high}}" />
<p>
An alert is triggered when the price deviation exceeds a designated threshold (e.g. <InlineMath math="\Delta_{52w} \le -0.30" />), representing a 30% drop from the rolling high. It isolates severe drawdowns caused by asymmetric market overreactions, validating whether the pricing is a statistical dislocation or a permanent valuation impairment.
</p>
</div>
</div>
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<div className="p-5 rounded-2xl border border-slate-800/60 bg-slate-950/40 space-y-3 flex flex-col">
<h4 className="text-xs font-bold text-emerald-400 uppercase tracking-wider font-mono">2. Welles Wilder RSI-14 Velocity</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Uses the smoothed Wilder Relative Strength Index to identify deep oversold thresholds (RSI &lt; 25). Momentum velocity measures standard deviation shocks in the indicator to forecast buy-exhaustion and selloff capitulations.
</p>
<div className="text-xs text-slate-400 leading-relaxed font-sans space-y-2 flex-1">
<p>
Uses the smoothed Welles Wilder Relative Strength Index to identify deep oversold thresholds (RSI <InlineMath math="< 30" />). Wilder smoothing calculations utilize modified EMAs for trend velocity:
</p>
<BlockMath math="S_{\text{gain}, t} = \frac{1}{14} U_t + \left(1 - \frac{1}{14}\right) S_{\text{gain}, t-1}" />
<BlockMath math="S_{\text{loss}, t} = \frac{1}{14} D_t + \left(1 - \frac{1}{14}\right) S_{\text{loss}, t-1}" />
<p>
where <InlineMath math="U_t" /> and <InlineMath math="D_t" /> represent upward and downward price changes. Relative Strength is <InlineMath math="\text{RS} = S_{\text{gain}, t} / S_{\text{loss}, t}" />. Momentum velocity measures standard deviation shocks in the indicator to forecast buy-exhaustion and selloff capitulations.
</p>
</div>
</div>
<div className="p-4 rounded-xl border border-slate-800/60 bg-slate-950/40 space-y-2">
<div className="p-5 rounded-2xl border border-slate-800/60 bg-slate-950/40 space-y-3 flex flex-col">
<h4 className="text-xs font-bold text-emerald-400 uppercase tracking-wider font-mono">3. FMP Valuation Overlay</h4>
<p className="text-xs text-slate-400 leading-relaxed font-sans">
Parses active valuation multiples: Price-to-Earnings (P/E), Price-to-Book (P/B), Dividend Yield, and Price/Earnings-to-Growth (PEG) ratios. Analyzes whether the selloff is justified fundamentally or is a dislocation from value.
</p>
<div className="text-xs text-slate-400 leading-relaxed font-sans space-y-2 flex-1">
<p>
Integrates trailing Price-to-Earnings (P/E), Price-to-Book (P/B), and Dividend Yield (%), alongside the PEG-to-Forward P/E transition. Detail how PEG resolves to a growth rate and computes implicit Forward P/E:
</p>
<BlockMath math="g_{\text{implicit}} = \frac{\text{Trailing PE}}{\text{PEG} \times 100}" />
<BlockMath math="\text{Forward PE} = \frac{\text{Trailing PE}}{1 + g_{\text{implicit}}}" />
<p>
When the pricing drop matches these valuation filters, the system triggers a **High-Conviction Value Alert** to signal structural undervaluation rather than a value trap.
</p>
</div>
</div>
</div>