Show description
The AI Capital Flow Algorithm
The AI Capital Flow Algorithm
AI CAPITAL FLOW // TRADING TERMINAL
MARKET STATUS: OPEN | THEME: OBSIDIAN
The "Waterfall" Algorithm
Capital flows sequentially. Use the NVDA beat to predict the next wave of buying in Infrastructure and Software.
STAGE 1: HARDWARE
The Chip Makers
NVDA
AMD
➜
STAGE 2: INFRA
The Buyers
ORCL
MSFT
➜
STAGE 3: SYMPATHY
The Enablers
VRT
ANET
Live Signals
Flow Sentiment
BULLISH SWEEP
Sector Rotation
SOFTWARE LAG
IV Rank (NVDA)
HIGH (Sell)
Option Chain Glossary
Definitions for the columns seen in your trading terminal. Understanding these is critical for executing the algorithm correctly.
The Target
Strike
The specific price at which the deal is set.
Example: A $100 Strike Call means you have the right to buy at $100.
The Price Check
Bid / Ask
Bid: The highest price a buyer will pay right now (Sell price).
Ask: The lowest price a seller will take right now (Buy price).
The Fair Value
Mid (Midpoint)
The exact middle between Bid and Ask.
Tip: Always try to get filled at the "Mid" price to save money.
History
Last
The price of the very last trade that actually happened.
Warning: If volume is low, "Last" might be old news. Check Bid/Ask instead.
Momentum
% Change
How much the option's price has moved since yesterday's close.
+100% means it doubled today.
Fear Gauge
Impl Vol (IV)
"Implied Volatility." The market's expectation of future crash or boom.
High IV = Expensive Options. Low IV = Cheap Options.
Liquidity
Open Int (Interest)
Total number of contracts currently active (held by people).
High Open Interest means lots of people are betting on this Strike.
The Greek
Delta
How much option price moves if stock moves $1.
0.50 Delta = Option gains $0.50 if Stock gains $1.00.
The Greek
Gamma
The acceleration of Delta.
High Gamma means profits (or losses) can explode very quickly.
The AI Capital Flow Algorithm
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The AI Capital Flow Algorithm</title>
<!-- Tailwind CSS for styling -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Chart.js for visualizations -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
black: '#000000', // True Black
gray: {
950: '#050505', // Almost Black
900: '#0a0a0a', // Very Dark Gray
850: '#121212', // Panel Background
800: '#1e1e1e', // Borders
},
accent: {
green: '#00e676', // Bright Neon Green
red: '#ff1744', // Bright Neon Red
blue: '#2979ff', // Bright Neon Blue
purple: '#d500f9', // Bright Neon Purple
}
}
}
}
}
</script>
<style>
body {
background-color: #000000;
color: #e0e0e0;
}
.glass-panel {
background: rgba(18, 18, 18, 0.85);
backdrop-filter: blur(12px);
border: 1px solid #333;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.glossary-card {
background: #0a0a0a;
border-left: 3px solid #333;
transition: all 0.2s ease;
}
.glossary-card:hover {
background: #111;
border-left-color: #2979ff;
transform: translateX(5px);
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #000000;
}
::-webkit-scrollbar-thumb {
background: #333;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.neon-border {
box-shadow: 0 0 5px rgba(41, 121, 255, 0.2);
}
</style>
</head>
<body class="antialiased min-h-screen flex flex-col font-sans selection:bg-accent-blue selection:text-white">
<!-- Navigation / Header -->
<header class="border-b border-gray-800 bg-black sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center gap-3">
<div class="w-2 h-2 rounded-full bg-accent-green shadow-[0_0_10px_#00e676] animate-pulse"></div>
<h1 class="text-xl font-bold tracking-tight text-white"><span class="text-accent-blue">AI</span> CAPITAL FLOW <span class="text-gray-600 font-mono text-sm">// TRADING TERMINAL</span></h1>
</div>
<div class="text-xs font-mono text-gray-500">
MARKET STATUS: <span class="text-accent-green">OPEN</span> | THEME: <span class="text-gray-300">OBSIDIAN</span>
</div>
</div>
</header>
<main class="flex-grow p-6 max-w-7xl mx-auto w-full space-y-8">
<!-- SECTION 1: The "Fine Algorithm" (Top Level) -->
<div class="grid grid-cols-1 lg:grid-cols-12 gap-6">
<!-- Left: Waterfall Logic -->
<div class="lg:col-span-8 space-y-6">
<section class="glass-panel rounded-xl p-6 relative overflow-hidden">
<h2 class="text-2xl font-bold text-white mb-2">The "Waterfall" Algorithm</h2>
<p class="text-gray-400 mb-6 max-w-2xl text-sm">
Capital flows sequentially. Use the <span class="text-accent-green font-mono">NVDA</span> beat to predict the next wave of buying in Infrastructure and Software.
</p>
<!-- VISUAL FLOWCHART -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mt-8">
<!-- Stage 1 -->
<div class="bg-gray-900 border border-accent-green/30 rounded-lg p-4 relative group hover:border-accent-green transition-colors cursor-pointer">
<div class="absolute -top-3 left-3 bg-black px-2 text-xs font-mono text-accent-green border border-accent-green shadow-[0_0_8px_rgba(0,230,118,0.3)]">STAGE 1: HARDWARE</div>
<h3 class="font-bold text-lg text-white mt-2">The Chip Makers</h3>
<div class="mt-3 flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">NVDA</span>
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">AMD</span>
</div>
</div>
<!-- Arrow -->
<div class="hidden md:flex justify-center items-center text-gray-700">➜</div>
<!-- Stage 2 -->
<div class="bg-gray-900 border border-accent-blue/30 rounded-lg p-4 relative group hover:border-accent-blue transition-colors cursor-pointer">
<div class="absolute -top-3 left-3 bg-black px-2 text-xs font-mono text-accent-blue border border-accent-blue shadow-[0_0_8px_rgba(41,121,255,0.3)]">STAGE 2: INFRA</div>
<h3 class="font-bold text-lg text-white mt-2">The Buyers</h3>
<div class="mt-3 flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">ORCL</span>
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">MSFT</span>
</div>
</div>
<!-- Arrow -->
<div class="hidden md:flex justify-center items-center text-gray-700">➜</div>
<!-- Stage 3 -->
<div class="bg-gray-900 border border-accent-purple/30 rounded-lg p-4 relative group hover:border-accent-purple transition-colors cursor-pointer">
<div class="absolute -top-3 left-3 bg-black px-2 text-xs font-mono text-accent-purple border border-accent-purple shadow-[0_0_8px_rgba(213,0,249,0.3)]">STAGE 3: SYMPATHY</div>
<h3 class="font-bold text-lg text-white mt-2">The Enablers</h3>
<div class="mt-3 flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">VRT</span>
<span class="px-2 py-1 bg-gray-800 rounded text-xs font-mono text-gray-300">ANET</span>
</div>
</div>
</div>
</section>
</div>
<!-- Right: Monitoring -->
<div class="lg:col-span-4">
<div class="glass-panel rounded-xl p-5 h-full flex flex-col justify-center">
<h3 class="text-sm font-bold text-gray-500 uppercase tracking-wider mb-4 border-b border-gray-800 pb-2">Live Signals</h3>
<div class="space-y-4">
<div class="bg-black/40 p-3 rounded border border-gray-800 flex justify-between items-center">
<span class="text-gray-400 text-sm">Flow Sentiment</span>
<span class="text-accent-green font-mono text-sm animate-pulse">BULLISH SWEEP</span>
</div>
<div class="bg-black/40 p-3 rounded border border-gray-800 flex justify-between items-center">
<span class="text-gray-400 text-sm">Sector Rotation</span>
<span class="text-accent-blue font-mono text-sm">SOFTWARE LAG</span>
</div>
<div class="bg-black/40 p-3 rounded border border-gray-800 flex justify-between items-center">
<span class="text-gray-400 text-sm">IV Rank (NVDA)</span>
<span class="text-accent-purple font-mono text-sm">HIGH (Sell)</span>
</div>
</div>
</div>
</div>
</div>
<!-- SECTION 2: GLOSSARY (The New Request) -->
<section class="glass-panel rounded-xl p-8 border-t-4 border-accent-blue">
<h2 class="text-3xl font-bold text-white mb-6 flex items-center gap-3">
<svg class="w-8 h-8 text-accent-blue" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path></svg>
Option Chain Glossary
</h2>
<p class="text-gray-400 mb-8 max-w-3xl">
Definitions for the columns seen in your trading terminal. Understanding these is critical for executing the algorithm correctly.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- STRIKE -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">The Target</div>
<h3 class="text-xl font-bold text-white mb-2">Strike</h3>
<p class="text-sm text-gray-400 leading-relaxed">
The specific price at which the deal is set.
<br><span class="text-gray-600 text-xs mt-2 block">Example: A $100 Strike Call means you have the right to buy at $100.</span>
</p>
</div>
<!-- BID / ASK -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">The Price Check</div>
<h3 class="text-xl font-bold text-white mb-2"><span class="text-accent-green">Bid</span> / <span class="text-accent-red">Ask</span></h3>
<p class="text-sm text-gray-400 leading-relaxed">
<strong class="text-accent-green">Bid:</strong> The highest price a buyer will pay <i>right now</i> (Sell price).<br>
<strong class="text-accent-red">Ask:</strong> The lowest price a seller will take <i>right now</i> (Buy price).
</p>
</div>
<!-- MID -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">The Fair Value</div>
<h3 class="text-xl font-bold text-white mb-2">Mid (Midpoint)</h3>
<p class="text-sm text-gray-400 leading-relaxed">
The exact middle between Bid and Ask.
<br><span class="text-accent-blue text-xs mt-2 block">Tip: Always try to get filled at the "Mid" price to save money.</span>
</p>
</div>
<!-- LAST -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">History</div>
<h3 class="text-xl font-bold text-white mb-2">Last</h3>
<p class="text-sm text-gray-400 leading-relaxed">
The price of the very last trade that actually happened.
<br><span class="text-gray-600 text-xs mt-2 block">Warning: If volume is low, "Last" might be old news. Check Bid/Ask instead.</span>
</p>
</div>
<!-- % CHANGE -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">Momentum</div>
<h3 class="text-xl font-bold text-white mb-2">% Change</h3>
<p class="text-sm text-gray-400 leading-relaxed">
How much the option's price has moved since yesterday's close.
<br><span class="text-accent-green text-xs mt-2 inline-block">+100% means it doubled today.</span>
</p>
</div>
<!-- IMPL VOL -->
<div class="glossary-card p-4 rounded bg-gray-900/50 border-l-orange-500">
<div class="text-xs text-orange-500 font-mono mb-1 uppercase tracking-widest">Fear Gauge</div>
<h3 class="text-xl font-bold text-white mb-2">Impl Vol (IV)</h3>
<p class="text-sm text-gray-400 leading-relaxed">
"Implied Volatility." The market's expectation of future crash or boom.
<br><strong class="text-white text-xs mt-2 block">High IV = Expensive Options. Low IV = Cheap Options.</strong>
</p>
</div>
<!-- OPEN INT -->
<div class="glossary-card p-4 rounded bg-gray-900/50">
<div class="text-xs text-gray-500 font-mono mb-1 uppercase tracking-widest">Liquidity</div>
<h3 class="text-xl font-bold text-white mb-2">Open Int (Interest)</h3>
<p class="text-sm text-gray-400 leading-relaxed">
Total number of contracts currently active (held by people).
<br><span class="text-gray-600 text-xs mt-2 block">High Open Interest means lots of people are betting on this Strike.</span>
</p>
</div>
<!-- DELTA -->
<div class="glossary-card p-4 rounded bg-gray-900/50 border-l-accent-purple">
<div class="text-xs text-accent-purple font-mono mb-1 uppercase tracking-widest">The Greek</div>
<h3 class="text-xl font-bold text-white mb-2">Delta</h3>
<p class="text-sm text-gray-400 leading-relaxed">
How much option price moves if stock moves $1.
<br><span class="text-gray-600 text-xs mt-2 block">0.50 Delta = Option gains $0.50 if Stock gains $1.00.</span>
</p>
</div>
<!-- GAMMA -->
<div class="glossary-card p-4 rounded bg-gray-900/50 border-l-accent-purple">
<div class="text-xs text-accent-purple font-mono mb-1 uppercase tracking-widest">The Greek</div>
<h3 class="text-xl font-bold text-white mb-2">Gamma</h3>
<p class="text-sm text-gray-400 leading-relaxed">
The acceleration of Delta.
<br><span class="text-gray-600 text-xs mt-2 block">High Gamma means profits (or losses) can explode very quickly.</span>
</p>
</div>
</div>
</section>
</main>
</body>
</html>