Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

Trend Oscillator - indicatore per MetaTrader 5

Pubblicati da::
Nikolay Kositsin
Visualizzazioni:
9004
Valutazioni:
(17)
Pubblicato:
2015.04.10 14:12
Aggiornato:
2016.11.22 07:32
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

Original author:

Evgeniy Gutorov

A trend oscillator indicator. The main algorithm for getting the source signals using the formula:

InputSeries[bar] = (Close[bar] - Open[bar]) / (High[bar] - Low[bar])

To calculate the oscillator signal generated by the green line we use the following formula:

Osc=Sum(Period) / Sum(Abs(Period)) * 100

where:

  • Sum(Period) - a sum of source signal values for a period;
  • Sum(Abs(Period)) - a sum of absolute source signal values for a period.

The red line is the Hodrick-Prescott filter which redraws if the redraw period in the beginning bars is big. For that reason it's better to use the period of 2 to get more reliable results.

Originally this indicator has been written in MQL4 and was first published in the Code Base on 15.08.2009.

Fig. 1 The geTrendOsc trend oscillator

Fig. 1 The geTrendOsc trend oscillator

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/12521

MAMA_HTF MAMA_HTF

The MAMA indicator with the timeframe selection option available in the input parameters.

Notches Notches

The indicator draws lines by ascending series of maximums and descending series of minimums.

Exp_Ozymandias Exp_Ozymandias

Trading system using the Ozymandias indicator.

Background_FiboCandles_HTF Background_FiboCandles_HTF

The indicator draws candlesticks of a larger timeframe as color filled rectangles based on the FiboCandles indicator.