Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Vues:
3077
Note:
(5)
Publié:
2018.07.09 13:31
PGC.mq5 (16.89 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Oscillator indicating the cyclic changes in the market.

It has seven adjustable parameters:

  • First MA period - first EMA period;
  • Second MA period - second EMA period;
  • Smoothing period - smoothing period;
  • RSI period - RSI calculation period;
  • Applied price - the calculation price;
  • Overbought level - overbought level;
  • Oversold level.

Calculation:

PGC =100.0 - 100.0 / (1.0+RS)

where:

if AvgDec != 0
RS = AvgInc / AvgDec
otherwise
RS = 0
AvgDec = EMA(Dec, RSI Period)
AvgInc = EMA(Inc, RSI Period)
If Z3 > PrevZ3
Inc = Z3 - PrevZ3, Dec = 0
If Z3 < PrevZ3
Dec = PrevZ3 - Z3, Inc = 0
Z3 = 2.0 * AvgMA3 - Avg2MA3
Avg2MA3 = EMA(AvgMA3, Smoothing period)
AvgMA3 = EMA((Z1 - Z2), Smoothing period)
Z2 = 2.0 * MA2 - AvgMA2
Z1 = 2.0 * MA1 - AvgMA1
AvgMA2 = EMA(MA2, First MA period)
AvgMA1 = EMA(MA1, First MA period)
MA2 = EMA(Applied price, Second MA period)
MA1 = EMA(Applied price, First MA period)

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21047

Reverse_Engineering_RSI Reverse_Engineering_RSI

the indicator performs an inverse mathematical transform of oscillator RSI into price and helps assume, at which approximate level the close price of the next day will be, if RSI reaches a certain value.

VAMA_MACD VAMA_MACD

Indicator Volume Adjusted MA MACD.

Exp_UltraAbsolutelyNoLagLwma Exp_UltraAbsolutelyNoLagLwma

A trading system using oscillator UltraAbsolutelyNoLagLwma.

Volume trader Volume trader

A trading system based on the tick volume of bars.