Quick Start
This page gets you from "I just added the indicator" to "I can see it is working correctly and I know what not to panic about."
Written By Axiom Admin
Last updated About 1 month ago
Quick Start
This page gets you from "I just added the indicator" to "I can see it is working correctly and I know what not to panic about."
Step 1: Add the indicator
Search for Axiom MA Osc Lite in TradingView's indicator search and add it to your chart. It appears in a separate pane below the price chart β not on the chart itself.
Before you add it, check your chart timeframe. The default slot timeframes are 5-minute, 15-minute, and 60-minute. Your chart must be on a timeframe equal to or lower than the lowest slot β so with the defaults, your chart needs to be on the 5-minute or lower (1m, 2m, 3m, etc.).
If your chart is on 15-minute or higher, the indicator will throw a runtime error and refuse to load. That is not a bug. Each slot's timeframe must be at or above the chart timeframe, and the defaults assume a short intraday chart. See Troubleshooting if you want to use the indicator on higher chart timeframes β you will need to adjust the slot timeframes first.
Step 2: Confirm what you see
With the defaults loaded on a 1-minute or 5-minute chart, you should see:
Three colored oscillator lines moving between β100 and +100. These are the per-slot Fast lines β one for each of the three MA slots (5m, 15m, 60m). They are colored teal, aqua, and blue respectively. The 5-minute slot line will move the most because it reacts to shorter-term price changes. The 60-minute line will be the smoothest.
A thicker lime or red line weaving through or near the individual slot lines. This is the Blended Fast line β a weighted average of the three slots. When the Blended Fast is above the Blended Slow line, the fill between them shades lime (regime-bullish). When below, it shades red (regime-bearish).
A gray line near the Blended Fast. This is the Blended Slow line. It is always gray regardless of direction.
Horizontal reference lines at +100 (red), +70 (gray dashed), 0 (gray solid), β70 (gray dashed), and β100 (green). The +70 and β70 lines are the default overbought and oversold thresholds. The Β±100 lines mark the hard bounds of the oscillator β the score cannot exceed them.
If you see all of this, the indicator is working.
Step 3: First sanity check
Look at the pane and confirm three things:
The individual slot lines oscillate in a reasonable range. With the default sensitivity of 1.0, the lines should spend most of their time in the β80 to +80 zone, reaching closer to the bounds only during strong moves. If all three lines are pinned at +100 or β100, you are probably in a strong trending period β that is normal.
The Blended Fast sits somewhere between the active slot values feeding it. It is a weighted average, so it should not sit outside the real min/max of the enabled slots. If it seems to be outside the range of the lines you can see, check for a hidden enabled slot before assuming the blend is wrong.
The most recent bars may look "stepped" rather than smoothly flowing. This is expected. With On Bar Close enabled (the default), the oscillator uses confirmed higher-timeframe values, which means it updates in discrete steps as each higher-timeframe bar closes rather than flowing continuously. The stepping is the confirmation mechanism working.
Step 4: Understand the color
Color is how the oscillator communicates regime β whether each slot's distance score is running above or below its own slow line. If you skip this, you will misread the pane within the first hour.
Each individual slot line uses two shades of its color:
Full opacity (vivid teal, aqua, or blue): the slot is in bullish regime β its Fast line is above its Slow line
Reduced opacity (faded version of the same color): the slot is in bearish regime β its Fast line is below its Slow line
The Slow line for each slot is not drawn in the pane. You see its influence only through the color change. When a slot's Fast line crosses above its Slow line, the color brightens. When it crosses below, the color fades.
The Blended Fast line uses lime for bullish regime and red for bearish. The Blended Slow is always gray.
One thing to notice: a slot can be in "bullish regime" (Fast above Slow) while both Fast and Slow are negative. Regime is about the relationship between the two lines, not about whether the oscillator is above or below zero. A negative reading that is rising faster than its smoothed version is in bullish regime β it just happens to still be below the MA.
First traps to avoid
Trap 1: "The indicator won't load"
The most common first-load failure is a chart timeframe that is too high for the default slot settings. If you are on a 15-minute chart and the slots are set to 5m / 15m / 60m, the 5-minute slot violates the "slot timeframe must be >= chart timeframe" rule and the script halts with an error.
Fix: Either lower your chart timeframe to 5m or lower, or open the indicator settings and increase each slot's timeframe to be at or above your chart timeframe.
Trap 2: "This behaves just like RSI β I'll read it the same way"
It does not behave like RSI, and reading it the same way will produce specific, costly mistakes. The most immediate one: RSI 70 tends to mean "stretched and likely to pull back soon" in range-bound conditions. This oscillator's +70 means "the normalized distance from the MA is large enough to hit a threshold you set." It says nothing about what happens next. The oscillator can sit above +70 for days during a trending market because the bounding function holds extreme values without pulling them back toward center. Fading a reading of +70 here the way you would fade RSI 70 puts you against a trend that shows no sign of stopping.
If you catch yourself thinking "it crossed overbought, so it should reverse soon," stop. That reflex comes from a different oscillator with different math, and it will hurt you here. Read This is not RSI and Limitations & Trust Boundaries before acting on extreme readings.
Trap 3: "The oscillator is stuck at +100 β something is broken"
During strong trends, the oscillator can sit at or very near +100 (or β100) for extended periods. This is the tanh saturation working as designed. The score has reached the bound because price is far from the MA in ATR units, and it will stay there until the distance shrinks enough for the tanh function to release it. This is not a broken reading β it is a compressed one. See For the Geeks for a deeper explanation of how and why the saturation works.
Trap 4: "The blended line doesn't match what I expect from the visible lines"
If you see three slot lines that look mostly negative but the Blended Fast line is positive, you may have a hidden slot affecting the blend. The Hide Plot toggle removes a slot's line from the pane, but the slot still computes and contributes to the blend with its configured weight. A hidden slot in strong bullish territory can pull the blended line upward even though everything you can see is bearish.
Check: Open settings and look for any slot where "Enable" is on but "Hide Plot" is also on. That slot is feeding the blend invisibly. Either disable it, set its weight to zero, or un-hide it.
Where to go next
You now have a working indicator and enough context to read the pane without being tripped up by the most common first-session surprises.
Your next step depends on what you need:
You want to understand what you are looking at β go to Visuals & Logic. This is the right next step for most people.
You want to configure the indicator for your instruments and timeframes β go to Settings. Read the ATR Sensitivity section carefully; it is the single most consequential setting.
You plan to compare the oscillator against past trades or strategy entries β go to MTF & Repainting first. If On Bar Close is off when you do that comparison, the historical data lies. Better to understand the mechanism before you rely on it.