Hurst 振荡指标两个指标: Hurst 振荡指标和 Hurst 区带 在 Jim Hurst 的 "The Magic of Stock Transaction Timing(股票交易的神奇时机)" 书中有所介绍。
指标有两个输入参数:
- Period - 计算周期数
- Smoothing - 平滑周期数
计算:
HO = MA - CMA[Period/2-1]
其中:
CMA = SMA(PRICE_MEDIAN, Period) MA = SMA(FlowValue, Smoothing)
- If Close > PrevClose
FlowValue = High
- If Close < PrevClose
FlowValue = Low
- If Close == PrevClose
FlowValue = (High+Low)/2
图 1. Hurst 振荡指标
图 2. Hurst 振荡指标和 Hurst 区带
由MetaQuotes Ltd译自俄语
原代码: https://www.mql5.com/ru/code/22199