import React from 'react'; import { BookOpen } from 'lucide-react'; import 'katex/dist/katex.min.css'; import { BlockMath, InlineMath } from 'react-katex'; interface CryptoMathModalProps { isOpen: boolean; onClose: () => void; } export default function CryptoMathModal({ isOpen, onClose }: CryptoMathModalProps) { React.useEffect(() => { const handleKeyDown = (e: KeyboardEvent) => { if (e.key === 'Escape') { onClose(); } }; if (isOpen) { window.addEventListener('keydown', handleKeyDown); } return () => { window.removeEventListener('keydown', handleKeyDown); }; }, [isOpen, onClose]); if (!isOpen) return null; return (
Institutional Specification Manual
Models momentum regimes and updates transition probabilities using on-chain alpha inputs.
The asset return state space is mapped into 3 momentum regimes:
Calculates transition probabilities over rolling 90-day return vectors:
where
When external alpha inputs (e.g. Funding Rate anomalies, Whale inflows) occur, state probabilities are updated using Bayes' theorem:
Where:
-
-