All Market Conditions
| Strategy Type | Risk Management / Portfolio Monitoring |
| Market Outlook | All Market Conditions |
| Risk Level | Risk Reduction Tool |
| Time Horizon | Real-time to Daily Monitoring |
| Best Conditions | Essential for all active trading and investment portfolios |
| Avoid When | Never - risk monitoring should always be active |
| Market Hours | 8:00 AM - 4:30 PM London time (LSE), with a closing auction to ~16:35 • Spot FX is over-the-counter and near 24-hour (Sun 22:00 - Fri 22:00 GMT); London is the main global centre • LME (metals) and ICE Futures Europe (energy); electronic sessions run close to 24 hours |
| Risk Metrics Sources | VFTSE (FTSE 100 volatility index) - market fear gauge • FTSE 100 P/E ratio from the LSE • Fund-flow data (overseas vs domestic institutional) from the Investment Association and data vendors • FTSE 350 advance-decline ratio • FTSE 100 options put-call ratio (ICE/LSE) |
| Regulatory Limits | FCA/exchange position limits, e.g. on commodity derivatives under MiFID II • Clearing-house initial margin (SPAN-based at ICE/LCH) plus FCA retail leverage caps on CFDs/spread bets • Maximum exposure per stock/sector; UCITS funds follow the 5/10/40 diversification rule |
| Circuit Breakers | Share-level circuit breakers: a price move beyond dynamic/static thresholds triggers a short automatic auction • No FTSE 100 market-wide index circuit breaker (unlike some other markets that halt on a set index move) • The LSE can suspend individual securities; there is no automatic FTSE-wide trading halt on a set index move |
| Broker Risk Controls | No fixed intraday square-off; leveraged CFD/spread-bet positions roll overnight with financing; cash equities settle T+1 • FCA 50% margin close-out rule on retail CFDs/spread bets; MiFID II transaction reporting • Mark-to-market loss alerts from your broker/platform |
Yes, absolutely. In fact, risk monitoring is MORE important for beginners because you're still learning and more likely to make mistakes. A single unmonitored disaster can wipe out your capital before you've learned enough to succeed. Start simple: set a daily loss limit (3% of capital), never risk more than 2% per trade, and stop trading when you hit your limit. These basic rules can save your trading career.
Broker alerts are a good starting point but usually insufficient for comprehensive monitoring. Broker alerts typically cover margin warnings but may not track your custom limits (daily loss, position sizing), correlation risks, or portfolio-level metrics like VaR. Start with broker tools, but as you grow, add your own tracking via spreadsheets or dedicated tools. AlgoKing provides simulation-based risk monitoring to help you practice.
Daily P&L against your daily loss limit. This is the simplest and most impactful metric. Know your loss limit (e.g., GBP 1,000), check your P&L frequently during the day, and stop trading if you hit it. This single discipline prevents most catastrophic losses. As you advance, add position sizing tracking, margin monitoring, and drawdown tracking.
Stop losses should be based on logical price levels (support/resistance, ATR-based), not arbitrary percentages. However, verify that your stop distance × position size ≤ your single-trade risk limit (typically 1-2% of capital). If the logical stop is too far away for your risk budget, reduce position size rather than tightening the stop artificially. Tight stops based on arbitrary numbers often get hit by normal market noise.
Stop trading immediately - no exceptions. Close all positions or set tight stops and walk away. Take a break from screens for at least an hour. Document what went wrong and review your trades. Do NOT try to 'make it back' - this revenge trading mindset leads to larger losses. Return the next day with fresh perspective and reduced position sizing. The daily loss limit exists precisely for days like this.
For stocks, use historical or parametric VaR based on stock returns. For options, use delta-equivalent exposure (option delta × underlying VaR) for a quick estimate, or full revaluation method (reprice options under VaR scenario using Black-Scholes) for accuracy. Account for correlation between underlyings. Option VaR should also consider vega risk if holding through potential volatility events. Portfolio VaR combines these with correlation adjustment. Tools like Python's numpy/scipy or Excel can calculate this.
Positive Theta means you're earning time decay daily (likely net short options). Negative Delta means you're positioned for market decline (net short delta). Risks: If market rallies, you lose from delta exposure. If market crashes sharply, you might lose from gamma (delta becomes more negative at lower prices) exceeding your theta gains. You're also short volatility (likely negative vega) - if the VFTSE spikes, your short options gain value against you. This is a carry trade: small daily profits, large potential losses. Size appropriately and have stop losses.
Run stress tests: (1) Monthly for regular portfolios - captures changes in composition and market conditions. (2) After significant position changes - new positions change stress test results. (3) After major market moves - your portfolio's stress test profile may have changed. (4) Before known risk events - earnings, elections, policy announcements. Many traders review a quick stress test (3-5 scenarios) weekly and full analysis monthly. Automated systems can run continuous stress tests and alert on significant changes.
Calculate correlation between daily returns of each strategy or position group. Build a correlation matrix showing all pairwise correlations. Alert when: correlations exceed historical norms (e.g., two strategies historically 0.3 correlated now showing 0.7), correlation cluster emerges (multiple positions become highly correlated), or overall portfolio correlation increases (average pairwise correlation rises). Watch for regime changes where correlations spike - this often happens in market stress when diversification benefits disappear precisely when you need them most.
Notional limits cap the value of positions: 'Maximum GBP 100,000 in single stock.' Simple to track but crude - doesn't account for position volatility. A GBP 100,000 position in a 50% annual volatility stock is much riskier than GBP 100,000 in a 10% volatility stock. Risk-based limits cap the potential loss: 'Maximum VaR of GBP 2,000 per position.' This accounts for volatility - the volatile stock would have smaller notional to meet the same VaR limit. Risk-based limits are more sophisticated and better for capital allocation efficiency.
UK market considerations: (1) Use local data - UK correlations and volatility patterns differ from US and emerging markets. (2) Account for higher kurtosis (fat tails) - equity markets show more extreme moves than the normal distribution predicts. Consider a Student-t distribution or EVT. (3) Adjust for liquidity - FTSE SmallCap and AIM shares carry liquidity risk not captured by price volatility. (4) Settlement and holiday effects - T+1 settlement and gaps around UK bank holidays affect short-term VaR. (5) Fund-flow sensitivity - monitor overseas and institutional fund flows as a regime indicator. (6) Sterling correlation - include a currency factor for international exposure; because FTSE 100 earnings are largely overseas, GBP moves materially affect the index. Backtest extensively using UK crisis periods (the 2008 global financial crisis, the 2016 Brexit referendum, the 2020 COVID crash, and the 2022 gilt/LDI crisis).
Implementation steps: (1) Define sizing rules: Single trade risk = % of capital (e.g., 2%). Max position = % of capital (e.g., 15%). (2) When new trade signal arrives, system receives entry price and stop loss. (3) Calculate risk per share = entry - stop. (4) Max shares from risk rule = (Capital × Risk%) / Risk per share. (5) Max shares from position limit = (Capital × Position%) / Entry price. (6) Final size = minimum of above two calculations. (7) Verify margin available for calculated size. (8) Submit order only if all checks pass. Integrate via broker API: calculate size, submit order programmatically. Log all calculations for audit. Test extensively in paper trading before live deployment.
Architecture: (1) Pre-trade risk check: Before any order, risk system validates against all limits (position size, concentration, margin, portfolio VaR impact). Order only proceeds if all checks pass. (2) Real-time monitoring: Parallel process continuously monitors portfolio metrics. Sends alerts to algo system when thresholds approached. (3) Post-trade update: After each fill, risk system immediately recalculates all metrics with new position. (4) Kill switch integration: Risk system can send 'halt' signal to algo system, stopping all new orders and optionally closing positions. (5) State synchronization: Risk system and algo system share position state to prevent discrepancies. (6) Failsafe: If risk system goes down, algo system should default to conservative behavior (no new trades, tight stops). Design for low latency to not slow order execution.
Approaches: (1) Historical correlation regimes: Calculate correlation during crisis periods (2008, 2020) separately from normal periods. Use crisis correlations for stress tests. (2) Correlation stress multiplier: Apply multiplier to normal correlations in stress scenarios (e.g., all correlations × 1.5, capped at 1.0). (3) Copula models: Use copulas (Gaussian, t-copula, Clayton) that allow different tail dependencies than normal correlation. T-copula with low degrees of freedom models crisis correlation spikes. (4) Factor model approach: In stress, assume all assets driven primarily by market factor (correlation approaches 1 through common factor). (5) Scenario-specific correlations: Define correlation matrix for each stress scenario based on historical or hypothetical analysis. Test sensitivity to correlation assumptions - if portfolio risk doubles when correlations increase to 0.9, you have significant correlation breakdown risk.
Model risk monitoring: (1) VaR exceedance tracking: Plot actual losses vs VaR over time. Use Kupiec test, Christoffersen test to statistically evaluate accuracy. (2) ES calibration: Track average loss on VaR exceedance days vs model ES. Persistent underestimation indicates model problem. (3) Factor model stability: Monitor R-squared of factor regressions. Declining R-squared suggests model losing explanatory power. (4) Regime detection: Track whether current market regime matches model training period. Elevated VFTSE or unusual correlation patterns suggest potential model stress. (5) Out-of-sample performance: Regularly test model on recent data not used in calibration. (6) Model comparison: Run multiple model variants (historical, parametric, Monte Carlo) and compare. Large discrepancies warrant investigation. (7) Parameter stability: Monitor key parameters (volatility estimates, correlations) for unusual jumps. Set model risk alerts when any of these metrics breach thresholds.
Full guided lessons, quizzes, and a complete strategy library for the United Kingdom market. One-time purchase. No subscription, ever.
Get United Kingdom access →