DeMarker (DeM)

Category: momentum

A technical indicator that compares the most recent maximum and minimum prices to the previous period's equivalent prices to measure the demand for the underlying asset.

Formula

DeMax = (High > High[i-1]) ? (High - High[i-1]) : 0; DeMin = (Low < Low[i-1]) ? (Low[i-1] - Low) : 0; DeMarker = SMA(DeMax, period) / (SMA(DeMax, period) + SMA(DeMin, period))

Inputs

See signal primitives, usage in published strategies and more on WOBR StrategyVerse.


Open in the WOBR AI app → · WOBR.AI home