Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 6014
- Note:
- Publié:
- 2018.10.25 18:32
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Hurst oscillator. Two indicators: Hurst oscillator and Hurst bands are described in Jim Hurst's "The Magic of Stock Transaction Timing" book
The indicator has two input parameters:
- Period - calculation period
- Smoothing - smoothing period
Calculation:
HO = MA - CMA[Period/2-1]
where:
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
Fig. 1. Hurst oscillator
Fig. 2. Hurst oscillator and Hurst bands
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22199

The indicator implements a breakout system using the XHullTrend_Digit indicator cloud

Hurst Bands indicator