You do not need an advanced degree in physics or mathematics to become a quantitative trader. The typical independent quant trader I know includes former hedge fund traders, computer programmers, investment bankers, and even a biochemist and an architect — people with high school–level statistics who backtest on a laptop. The strategies that work at the retail scale are simpler than those at the institutional level, and simplicity is not a weakness.
Reading notes · DR·Q03·CHA
Quantitative Trading
A working manual for running a small systematic strategy: finding an edge, backtesting it honestly, and surviving the costs.
Distilled reading notes — 36 micro-notes across 8 chapters. Buy the book.
CH. 1 — The Whats, Whos, and Whys of Quantitative Trading
Quantitative trading is, in many ways, an ideal small business: it is perfectly scalable, demands little of your time once the systems are running, requires no marketing, and can be started with modest capital. The fact that legends like Ed Thorp and Jim Simons began by trading their own money before managing billions is not a coincidence — it is the natural progression. You should expect to become a profitable $100,000 trader before becoming a profitable $100 million trader.
The single most important advantage of being a retail trader over an institutional one is that you can fly under the radar of large money managers. Strategies that move too little capital to interest a hedge fund can still deliver excellent risk-adjusted returns for an individual. This is the niche you should be searching for — not strategies that work at scale, but strategies that work precisely because they cannot be scaled.
Independent trading forces a discipline that institutional employment never does: because it is your own money and your own potential bankruptcy on the line, risk management stops being a policy document and becomes a survival imperative. I only wish I had understood this before starting my career at a bank — I would have achieved profitability many years sooner.
CH. 2 — Fishing for Ideas
Finding a trading idea is, surprisingly, not the hard part. There are hundreds of publicly available strategies at any moment — in academic papers on SSRN and NBER, in financial blogs and podcasts, in traders’ forums, and in aggregators like Quantpedia. Many authors publish their complete methodology and backtest results. The hard part is identifying which of these ideas is worth your time to implement seriously.
Before spending a week backtesting, run a quick pre-screening checklist. Does the strategy outperform a benchmark? Does it have a Sharpe ratio above 1? Is the drawdown and drawdown duration tolerable? Does the backtest suffer from survivorship bias? Has its performance decayed in recent years? Many strategies fail one of these screens immediately, and you will spare yourself enormous wasted effort.
The strategy you choose must fit you personally. Your working hours constrain whether you can trade intraday or hold overnight. Your programming skills determine which platforms are accessible. Your capital determines whether a retail brokerage account or a proprietary trading firm membership is more practical — low capital typically pushes you toward futures and currencies through a prop firm, while higher capital opens equities and overnight positions.
Strategies you find in public sources rarely work exactly as advertised — they may have worked only briefly, only for a certain class of stocks, or only before transaction costs are considered. The trick is that you can almost always modify a basic strategy to make it profitable. The first public version is a starting point for your own research, not a finished product.
A key filter is whether the strategy can survive increased competition. Mean-reverting strategies in particular tend toward a slow death of diminishing returns as they attract more capital — not sudden catastrophic losses. This is preferable: the slow fade gives you time to recognize the decay and move on.
CH. 3 — Backtesting
The most dangerous pitfall in backtesting is look-ahead bias: inadvertently using information that would not have been available at the time of a historical trading decision. It is easy to introduce this accidentally in even simple Excel models. Every backtest must be scrutinized for whether each data point used was genuinely available to the strategy at the moment it would have acted.
Data-snooping bias is the second great enemy. If you tweak your strategy enough times against the same historical data, you will eventually find parameters that look great in backtest but are purely artifacts of overfitting. As a rule of thumb, I would not employ more than five free parameters in any model. The minimum backtest length grows with the number of parameters — Bailey et al. provide rigorous mathematical bounds on this.
Survivorship bias inflates backtest results by excluding stocks that went bankrupt, were delisted, or were acquired. A database containing only today’s survivors will make strategies that buy recent losers look unrealistically profitable in the past, because those losers who never recovered — and who would have been bought — simply do not appear in the data.
Transaction costs must be incorporated realistically and precisely. A strategy with a Sharpe ratio of 0.25 ignoring costs can become a Sharpe ratio of –3.19 once you apply even 5 basis points per trade. The impact is not linear: high-turnover strategies are devastated by costs that barely affect low-turnover ones. This reality alone eliminates most strategies that look attractive on paper.
Strategy refinement after backtesting is legitimate, but each refinement must be grounded in economic reasoning or a well-studied market phenomenon — not arbitrary trial-and-error rule adjustments. Otherwise you are simply snooping the data under a different name. Out-of-sample testing on a true holdout period is the ultimate check on whether your refinements are real.
CH. 4 — Setting Up Your Business
The first structural decision is whether to open a retail brokerage account or join a proprietary trading firm. Low capital pushes you toward a prop firm because Regulation T’s 2:1 leverage cap on retail equity accounts is often insufficient; prop firms can offer 10:1 or more. But prop firms restrict your trading style and often the instruments you can trade, so you must weigh access to leverage against loss of flexibility.
Commissions are only part of your total transaction costs, and sometimes a small part. The speed of your brokerage’s execution, their access to dark pools, and the degree of market impact your orders cause all matter equally or more. Interactive Brokers and Alpaca are reasonable starting points for independent traders, but evaluate the full cost structure — not just the headline commission rate.
The most critical technical feature to require from any brokerage is an API for real-time data retrieval and order transmission. Without this, you cannot build an automated system, and without an automated system you cannot trade strategies that require fast or frequent execution. Everything else in the infrastructure follows from this: a good personal computer, a reliable high-speed internet connection, and the right API are all you need to start.
The physical infrastructure for a start-up trading business can be deliberately light. I have seen successful independent traders run entirely from a home office. Adding redundancy — a second internet connection, an uninterruptible power supply, a backup computer — only becomes necessary once you are generating real income worth protecting.
CH. 5 — Execution Systems
An automated trading system (ATS) is software that generates and transmits orders to your brokerage based on your strategy, without requiring manual intervention for each trade. Its three core advantages are: faithful adherence to the backtest model (no discretionary second-guessing), elimination of human execution delays, and the ability to monitor multiple instruments simultaneously — something no human can reliably do.
Start with a semiautomated system before building a fully automated one. In a semiautomated system, you generate an order list using Excel, MATLAB, Python, or R, then manually upload it to your brokerage’s basket trader. This approach is easier to build, easier to audit, and still eliminates the most dangerous human error — the impulse to override your own signals.
A fully automated system uses a brokerage API to retrieve live data, run your model, and submit orders without any human step between signal and execution. The advantage is indispensable for strategies where even a few seconds of manual delay would destroy the edge. The disadvantage is that it requires programming discipline: a bug in the automated system that you discover only after live trading can be expensive.
Regime changes — unexpected market structure shifts — are the greatest operational risk in live execution. Your backtest model was calibrated on a particular regime, and when the market shifts, your system will faithfully continue executing a strategy whose edge has vanished or inverted. Monitoring for regime changes and having a clear protocol for when to pause a strategy is as important as the strategy itself.
CH. 6 — Money and Risk Management
The Kelly criterion gives you the mathematically optimal leverage to apply to a strategy given its mean return and variance. For a single strategy, the Kelly leverage is simply the Sharpe ratio divided by the standard deviation of returns. Using less than Kelly leverage guarantees lower long-term growth; using more than Kelly leverage guarantees eventual ruin. This is not a heuristic — it is a mathematical fact about the compounding of returns.
When you have multiple strategies, the Kelly formula extends to a multivariate case that determines the optimal capital allocation across all of them simultaneously, based on the covariance matrix of their returns. Two strategies with negatively correlated returns can together justify more total leverage than either would warrant individually. This diversification benefit is the strongest argument for running a portfolio of strategies rather than a single one.
Stop-loss orders do not prevent catastrophic losses in a crisis. When prices drop discontinuously — as they do in genuine market crashes — your stop-loss will be filled at prices far worse than the trigger level. The real protection against catastrophe is using the Kelly formula to size positions correctly from the start, so that even a severe drawdown does not threaten your survival.
There are two major psychological traps that destroy otherwise sound quantitative traders: despair during prolonged drawdowns, and greed after a winning streak. Despair causes traders to shut down a perfectly good model prematurely, crystallizing a temporary loss as a permanent one. Greed causes traders to increase position size just as the model’s edge is mean-reverting away. Both errors stem from overweighting recent experience — the representativeness bias described in behavioral finance.
Loss aversion — the tendency to feel losses more acutely than equivalent gains — is not simply an irrational behavioral bias. It has a rigorous mathematical justification: the ensemble average return of a strategy (what the average trader earns) and the time-series average return of a strategy (what you personally compound over time) can diverge dramatically. Avoiding ruin is individually rational even when the expected value is positive, because you are a single trajectory, not an average across thousands.
CH. 7 — Special Topics in Quantitative Trading
Trading strategies can only profit if prices are either mean-reverting or trending; a pure random walk yields nothing. Mean reversion is more prevalent than trending: at short time scales, most single-stock prices and many spreads exhibit reversion. Trending regimes are usually caused by slow information diffusion, the incremental execution of large institutional orders, or herding behavior — all of which are inherently transient and hard to predict in advance.
Cointegration is the correct statistical foundation for pairs trading, not correlation. Two price series can be highly correlated and yet form a nonstationary spread that drifts without bound — as the KO versus PEP spread illustrates over a long history. Cointegration tests (Engle-Granger or Johansen) detect whether a linear combination of two series is stationary, which is the precondition for a mean-reversion strategy to have a structural edge.
Factor models like the Fama-French Three-Factor model — which explains stock returns through beta, book-to-price ratio, and market capitalization — can serve as the skeleton of a momentum strategy if you assume that factor returns themselves exhibit momentum. However, factor-model strategies typically carry long holding periods and are subject to severe regime-driven drawdowns when investors rotate between value and growth, as happened from 2017 to 2020.
Seasonal trading strategies — entering a position at a fixed calendar date and exiting at another — still offer edge in commodity futures even as equity market seasonality has largely been arbitraged away. A gasoline futures seasonal trade (buying near end of February, selling around end of April) was profitable for many consecutive years because of structural supply-demand shifts around the summer driving season. Natural gas trades, while historically profitable, are notoriously volatile and carry fat-tail risk.
High-frequency strategies — those that do not hold positions overnight — exploit tiny market microstructure inefficiencies or provide temporary liquidity for a small fee. Their edge is durable precisely because it is not macro-directional: the need for short-term liquidity persists day to day regardless of broader market conditions. The main practical obstacle is backtesting: transaction costs dominate at minute or second intervals, and tick-level historical databases are expensive and difficult to work with.
CH. 8 — Conclusion: Niche, Longevity, and the Independent Trader's Path
The independent quantitative trader’s sustainable advantage is specialization in strategies that institutional money managers cannot profitably run — those that are too small in capacity, too illiquid, or too operationally demanding to be worth a hedge fund’s attention. Fighting for the same alpha sources as Two Sigma or Renaissance is a losing battle; finding the strategies they have no incentive to run is the viable path.
Alpha decay is an unavoidable feature of quantitative strategies. As a strategy becomes more widely known and more capital chases it, returns compress. The appropriate response is not to hold on and hope but to monitor the strategy’s live Sharpe ratio continuously and have pre-established thresholds at which you will investigate whether the edge has structurally degraded versus experienced a temporary drawdown.
Building a quantitative trading business means accepting that you are managing a portfolio of strategies, not executing a single insight indefinitely. Diversification across uncorrelated strategies — mean reversion and momentum, equities and futures, daily and intraday — is the only reliable buffer against the inevitable decay of any individual strategy’s edge.
The psychological demands of independent trading are not incidental to the business — they are central to it. No risk management formula will save a trader who panics during drawdowns or overtrades after winning streaks. The combination of sound position sizing (Kelly), realistic expectations about drawdown duration, and genuine understanding of behavioral biases is the full toolkit. Mathematical edge is necessary but not sufficient.