StratCraft

指数移动平均振荡器 (EMA Oscillator)

EMA 偏差动量的 QuantNexus 指标页面。

Route: /quantnexus/indicators/exponentialmovingaverageosc/

作用

EXPONENTIALMOVINGAVERAGEOSC 衡量价格偏离其指数移动平均线(EMA)的程度。

公式

振荡器 = 价格 - EMA(period)

参数

  • period - 默认 14

C++23 API

#include <nonabt/indicators/exponentialmovingaverageosc.hpp>
auto emaOsc = std::make_unique<nonabt::EXPONENTIALMOVINGAVERAGEOSC>(data().close(), 14);

常见用法

  • 用于发现偏离趋势的动量扩张。
  • 与趋势过滤器或均值回归触发信号配合使用。
  • 当你需要一个直接的 EMA 离散信号时非常有用。