Files
QuanTAlib/lib/oscillators/apo/Apo.md
T
86fe32a682 SIMD Refactor: Merge simd-dev into dev (#55)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) <aider@aider.chat>
Co-authored-by: Warp <agent@warp.dev>
2026-01-18 19:02:03 -08:00

3.4 KiB

APO: Absolute Price Oscillator

Percentages are for analysts. Traders pay bills in cash. APO tells you the cash value of the trend.

The Absolute Price Oscillator (APO) measures the raw currency difference between two exponential moving averages. Unlike its percentage-based cousin (PPO), APO speaks in dollars and cents, making it the preferred tool for spread traders, arbitrageurs, and anyone whose P&L is denominated in currency rather than basis points.

Historical Context

A $5 move on a $100 stock (5%) feels different than a $5 move on a $20 stock (25%), but to a spread trader balancing a hedge, $5 is $5. Percentage oscillators distort this reality.

APO strips away the normalization. It simply asks: "How far is the fast trend from the slow trend in absolute terms?" This provides a direct read on the cash momentum of the asset.

Architecture & Physics

APO is built on the foundation of the high-performance QuanTAlib Ema kernel. It inherits the O(1) computational complexity and zero-allocation characteristics of the underlying moving averages.

  1. Dual EMA Engine: Two independent Exponential Moving Averages (Fast and Slow) are maintained.
  2. Differential: The arithmetic difference between them is computed.
  3. SIMD Acceleration: For batch processing, hardware intrinsics are used to perform the subtraction across the entire dataset in parallel.

Computational Efficiency

The EMAs are not recalculated from scratch. The state of both the fast and slow EMAs is maintained, allowing the APO update to be computed in constant time, regardless of the lookback period.

  • Time Complexity: O(1) per update.
  • Space Complexity: O(1) (two EMA state structs).
  • Allocations: 0 bytes on the hot path.

Mathematical Foundation

The formula is the definition of simplicity.

APO_t = EMA(P, n_{fast}) - EMA(P, n_{slow})

Where:

  • EMA is the recursive Exponential Moving Average.
  • n_{fast} is the fast period (default 12).
  • n_{slow} is the slow period (default 26).

Performance Profile

APO performance is effectively the sum of two EMA calculations plus a subtraction.

Zero-Allocation Design

The implementation uses stackalloc for internal buffers when processing spans, ensuring no heap allocations occur during the calculation. The hot path for streaming updates is purely scalar and allocation-free.

Metric Score Notes
Throughput 15ns 15ns / bar (Apple M1 Max).
Allocations 0 Hot path is allocation-free.
Complexity O(1) Constant time updates.
Accuracy 10/10 Matches TA-Lib to 1e-9.
Timeliness 6/10 Lags due to EMA smoothing.
Overshoot 8/10 Can overshoot in volatile markets.
Smoothness 6/10 Smoother than raw price.

Validation

Validation is performed against industry-standard libraries.

Library Status Notes
TA-Lib Matches APO with MAType.Ema.
Tulip Matches ti.apo.
Ooples Matches CalculateAbsolutePriceOscillator.
Skender N/A Not implemented in Skender.

Common Pitfalls

  • Scale Sensitivity: APO values are not normalized. An APO of 10.0 on Bitcoin is noise; on EUR/USD, it's a catastrophe. Use PPO for cross-asset comparisons.
  • Lag: As a derivative of moving averages, APO lags price. The lag is a function of the slow period.