TREND, MOVING AVERAGES & STRUCTURE
Sine WMA
A moving average whose weights rise to a peak in the middle of the window and taper at both ends — a very smooth line.
spec id: sinwmalength (default 14)
What does Sine WMA measure?
A moving average whose weights rise to a peak in the middle of the window and taper at both ends — a very smooth line.
How is Sine WMA calculated?
Average the last 14 closes, weighting each one by a sine curve that peaks at the centre of the window.
Written by reading the engine’s real computation, not a textbook — where the two differ, the page describes what actually runs.
How do I use Sine WMA in a bot?
In the builder, add an indicator of type sinwma (parameters: length, default 14). Its value becomes an operand you can compare in any entry or exit rule. The engine grades the whole rule honestly: real fills, no look-ahead, half the history held back.
Related indicators
- SMAThe plain trend line — the classic "is this stock healthy?
- Smoothed MAThe smoothed moving average — the same slow, sticky line as Wilder's RMA, under its other common name.
- Super smootherAn engineer's smoother: it removes the fast noise from price while adding far less delay than an ordinary moving average.
- SupertrendA single trend line that sits below price in an uptrend and above it in a downtrend, flipping sides when the trend changes.
Or browse all 158 indicators in the full library.