[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-upmove-it":3},"# Up Move (UPMOVE)\n\n> StratCraft indicator page for upward price displacement.\n\n**Route**: `\u002Findicators\u002Fupmove\u002F`\n\n## What It Does\n\nUPMOVE measures upward displacement from one bar to the next.\n\n## Formula\n\n`Up Move = max(close - previous close, 0)`\n\n## Parameters\n\n- `period` - default `14`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fupmove.hpp>\nauto upMove = std::make_unique\u003Cnonabt::UPMOVE>(data().close(), 14);\n```\n\n## Common Usage\n\n- Use it as a directional magnitude input.\n- Pair it with down-move or true-range logic.\n- Helpful in oscillators and movement decomposition.\n"]