Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
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:
4652
Note:
(17)
Publié:
2018.09.27 15:59
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The Relative Strength Index oscillator displayed as a color histogram, using volumes.

Calculation formula:

RSI Histogram Vol = ( RSI - 50) * Volume

For quite understandable reasons, the recalculation of overbought and oversold levels in such a modified oscillator should be performed using the same formula. In the final version, these levels are no longer permanent. Two levels with the appropriate breakout indication were used.

input int                 HighLevel2=+20;           // Overbought level 2
input int                 HighLevel1=+15;           // Overbought level 1
input int                 LowLevel1=-15;            // Oversold level 1
input int                 LowLevel2=-20;            // Oversold level 2

In the indicator input parameters, these levels are shifted by the levels of 50 of the source RSI, and then multiplied by volumes at each indicator tick.

Fig. 1. The RSI_Histogram_Vol indicator

Fig. 1. The RSI_Histogram_Vol indicator

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

Exp_Trading_Channel_Index Exp_Trading_Channel_Index

A trading system based on the Trading_Channel_Index oscillator signals.

Exp_Trend_Intensity_Index Exp_Trend_Intensity_Index

A trading system based on the Trend_Intensity_Index oscillator signals.

GD GD

The Generalized DEMA moving average

CCI_Histogram_Vol CCI_Histogram_Vol

The Commodity Channel Index oscillator displayed as a color histogram, using volumes.