StratCraft

Up Move (UPMOVE)

QuantNexus indicator page for upward price displacement.

Route: /quantnexus/indicators/upmove/

What It Does

UPMOVE measures upward displacement from one bar to the next.

Formula

Up Move = max(close - previous close, 0)

Parameters

  • period - default 14

C++23 API

#include <nonabt/indicators/upmove.hpp>
auto upMove = std::make_unique<nonabt::UPMOVE>(data().close(), 14);

Common Usage

  • Use it as a directional magnitude input.
  • Pair it with down-move or true-range logic.
  • Helpful in oscillators and movement decomposition.