[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-pposhort-zh":3},"# 短线百分比价格振荡器 (PPOSHORT)\n\n> 短线 PPO 变体的 StratCraft 指标页面。\n\n**Route**: `\u002Findicators\u002Fpposhort\u002F`\n\n## 作用\n\nPPOSHORT 是一种短线百分比价格振荡器，核心理念与 PPO 相同。\n\n## 公式\n\n`PPOSHORT = 快线和慢线移动平均线之间的归一化价差`\n\n## 参数\n\n- `period1` - 默认 `12`\n- `period2` - 默认 `26`\n- `_movav` - 默认 `ExponentialMovingAverage`\n- `period_signal` - 默认 `9`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fpposhort.hpp>\nauto ppoShort = std::make_unique\u003Cnonabt::PPOSHORT>(data().close(), 12, 26, \"ExponentialMovingAverage\", 9);\n```\n\n## 常见用法\n\n- 使用信号线进行动量确认。\n- 当你需要以简洁形式进行 PPO 风格的归一化时非常有用。\n- 与价格结构或交叉确认配合使用。\n"]