mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-16 09:38:05 +00:00
doc headers
This commit is contained in:
@@ -1,4 +1,21 @@
|
||||
# AMAT: Archer Moving Averages Trends
|
||||
# AMAT: Archer Moving Averages Trends
|
||||
|
||||
| Property | Value |
|
||||
| ---------------- | -------------------------------- |
|
||||
| **Category** | Dynamic |
|
||||
| **Inputs** | OHLCV bar (TBar) |
|
||||
| **Parameters** | `fastPeriod` (default 10), `slowPeriod` (default 50) |
|
||||
| **Outputs** | Multiple series (Strength, FastEma, SlowEma) |
|
||||
| **Output range** | Varies (see docs) |
|
||||
| **Warmup** | `slowPeriod` bars |
|
||||
|
||||
### TL;DR
|
||||
|
||||
- The Archer Moving Averages Trends indicator is a triple-confirmation trend identification system that uses dual EMAs to produce discrete directiona...
|
||||
- Parameterized by `fastperiod` (default 10), `slowperiod` (default 50).
|
||||
- Output range: Varies (see docs).
|
||||
- Requires `slowPeriod` bars of warmup before first valid output (IsHot = true).
|
||||
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
|
||||
|
||||
The Archer Moving Averages Trends indicator is a triple-confirmation trend identification system that uses dual EMAs to produce discrete directional signals (+1 bullish, -1 bearish, 0 neutral). Unlike simple crossover systems that trigger on any intersection, AMAT requires alignment of three conditions: relative position (fast above/below slow), fast EMA direction (rising/falling), and slow EMA direction (rising/falling). This triple gate filters out the whipsaw endemic to single-condition crossover systems in ranging markets. A secondary output quantifies trend strength as the percentage separation between EMAs, providing a conviction metric for position sizing.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user