Scan watch

ATM±5 strikes the BOT evaluates each 3m scan

NIFTY50 Scanning PE @if (auth()->user()->isAdmin())
@csrf
@endif
@if ($data['market_feed_connected'] ?? false) Live data from FlatTrade admin feed. Last refresh via market sync or dashboard auto-refresh. @else Admin FlatTrade feed not connected — connect credentials to load live option chain. @endif
@forelse ($instruments as $instrument) @php $tick = $instrument->latestTick; $greek = $instrument->latestGreek; @endphp
{{ $instrument->option_type }} {{ number_format($instrument->strike_price, 0) }} {{ $instrument->expiry_date?->format('d M Y') }}
₹{{ number_format($tick?->ltp ?? 0, 2) }}
Δ {{ number_format($greek?->delta ?? 0, 2) }}
Γ {{ number_format($greek?->gamma ?? 4, 4) }}
OI {{ number_format($tick?->oi ?? 0) }}
Score {{ number_format($greek?->score ?? 0, 0) }}
@empty
No instruments in scan watch. Admin sync required.
@endforelse