SShortSingh.
Back to feed

Monte Carlo Model Reveals Single 3.07x Market Shock Figure Masks a -32% Tail Risk

0
·2 views

A financial modeling series found that a previously reported 3.07x amplification of a -5% market shock — turning it into a -15.4% drawdown — was accurate but incomplete, representing only the median of a wider distribution of outcomes. Running 2,000 Monte Carlo paths with variable inputs for net gamma and shock size showed drawdowns ranging up to -32.1%, with a 1-in-100 tail risk near -28%. The model also corrected a data error from an earlier installment, where a Labor Day market holiday had introduced a faulty VIX and SKEW reading labeled as September 7; the corrected date is September 4, with VIX at the 18th percentile and SKEW at the 83rd. The fix involved adding a weekend filter and aligning VIX and SKEW on their latest common trading date, though the underlying conclusion about calm volatility and expensive tail protection remained unchanged. The updated framework produces an exceedance-probability curve showing that half of all simulated paths breach -15% and one in five crosses -20%, giving a fuller picture of mechanism-driven market risk.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Apple M6 Launches as Solo Chip on TSMC N2, Skipping Pro and Max Tiers Entirely

Apple announced the M6 chip on August 25th alongside the M5 Ultra, breaking from its established pattern of releasing a full family of base, Pro, Max, and Ultra variants. The M6 is a single monolithic die built on TSMC's cutting-edge N2 node — the first commercial silicon to use gate-all-around nanosheet transistors — while the M5 Ultra was simultaneously released on the older N3P node. Apple confirmed there will be no M6 Pro, M6 Max, or M6 Ultra, making the M6 a one-chip generation. Performance gains over the M5 are incremental — roughly 1.2x multithreaded CPU and 2x Neural Engine throughput — but Apple's strategic priority appears to be securing early, high-volume production on N2 to improve yields on the new and expensive process node.

0
ProgrammingDEV Community ·

South Korea Builds Dual-Model AI Security System with 33-Org Consortium

A 33-institution South Korean consortium, led by Naver Cloud, is developing K-MYTHOS, a government-backed AI foundation model specialized for cybersecurity applications. The project uses a dual-model architecture pairing an attack-focused AI built on LG AI Research's EXAONE model with a defense-focused AI built on Naver Cloud's HyperCLOVA X. The system ingests threat intelligence from multiple sources including malware telemetry, dark web monitoring, network packets, and cloud security data. AI safety firm VIDRAFT contributes an independent auditing layer through its AX-RAY framework, which evaluates models across 117 structured inspection items. The project targets deployment across seven industry verticals including email security, access control, and SOC products, though no public release or benchmark scores have been announced yet.

0
ProgrammingDEV Community ·

How Next.js Teams Are Rearchitecting Apps to Handle Long-Running AI Agents

As AI-native applications grow more complex in 2026, developers are hitting hard infrastructure limits that simple prompt engineering cannot solve. Vercel's Edge Runtime imposes a 25-second execution cap, which proves insufficient for multi-step AI agents that chain reasoning, database lookups, and third-party API calls. Engineers are addressing this by switching to the Node.js runtime, which allows execution durations of up to five minutes, giving agentic workflows room to complete without timing out. Beyond runtime selection, teams are offloading heavy inference tasks to dedicated GPU worker pods and using HTTP-based services like Upstash Redis and QStash to manage session state and avoid connection pool exhaustion. The core recommendation is to treat Next.js as a stateless streaming proxy and design for execution boundaries from the start, rather than retrofitting solutions after failures emerge in production.

0
ProgrammingDEV Community ·

More Training Helps Transformers, But Cache Models Stay Competitive on Long Files

A new experiment tested whether training a small 2.45-million-parameter transformer on more data could close the performance gap with a zero-parameter count-cache model. Checkpoints saved at 500K, 2M, and 8M training tokens showed that the crossover point — where the transformer begins outperforming the cache — shifted from roughly 74 tokens to 492 tokens of document length as training data increased 16-fold. The cache model's accuracy remained constant across all training scales, since it never uses training data, serving as an internal control for the experiment. Extrapolating the observed rate, matching the cache on a 4,000-token file would require roughly 100–174 million tokens of in-domain code — far more than exists in typical per-repository settings. The findings suggest that while additional training does improve transformer performance, it cannot substitute for direct access to the current document context.