Algorithm Library:
Methods, Not “Strategies”
AlgoBoy maintains a library focused on mechanisms — not trading tips or packaged strategies. This library exists to document how algorithms are built, why they behave the way they do, and where they fail.
✓ What This Is
- A structured catalogue of algorithmic methods
- A reference for assumptions & trade-offs
- A technical resource for builders
- A foundation for reproducible research
× What This Is Not
- A list of profitable strategies
- A signal selling service
- A set of black-box models
- A promise of financial returns
If a method cannot be clearly described, parameterized, and stress-tested, it does not belong here.
Method-First Thinking
We approach algorithms as composable components. Most real-world systems are built from layers: data conditioning, feature construction, signal generation, and risk constraints. We isolate these layers to allow methods to be compared across markets and reused without narrative bias.
Core Method Categories
Mean Reversion
Methods that assume price, odds, or probabilities revert toward a reference level.
Key ConsiderationsTime horizon sensitivity, liquidity dependence, and regime fragility.
Momentum & Trend
Methods that exploit directional persistence over defined horizons.
Key ConsiderationsEntry timing vs continuation, volatility-adjusted momentum, signal decay.
Relative Value
Algorithms that compare entities against each other rather than in isolation (e.g. Runner vs Field).
Key ConsiderationsReference group stability, hidden correlations, cross-contamination.
Market Microstructure
Exploiting structural properties: order book imbalance, queue position, and spread compression.
Key ConsiderationsVenue-specific rules, latency sensitivity, data completeness.
Probabilistic & Odds
Primarily for betting exchanges. Implied probability drift, overround normalization, and price efficiency.
Key ConsiderationsLiquidity timing, participant behavior, market closure dynamics.
Regime & State-Based
Methods that adapt behavior based on detected market conditions (Volatility regimes, etc).
Key ConsiderationsDetection lag, false regime switches, overfitting definitions.
Anomaly Detection
Flagging deviations rather than predicting direction. Volume anomalies, probability compression.
Key ConsiderationsFalse positives, data artifacts, reaction vs anticipation.
Cross-Market Applicability
A core design goal of the library is cross-market relevance. We evaluate methods across Traditional Financial Markets, Betting Exchanges, and select Crypto venues. This often reveals uncomfortable truths: methods that "work" in one market fail elsewhere because structural differences matter more than indicators.