Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
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:
2521
Note:
(26)
Publié:
2012.01.19 13:40
Mise à jour:
2016.11.22 07:32
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

CVHFOnArray class is designed for calculation of Vertical Horizontal Filter (VHF) values on indicator buffers.

Usage:

Init() method with the following parameter is called in the OnInit() function:

  • int VHFPeriod - indicator period.

Solve() method with the following parameters is called in the OnCalculate() function:

  • const int aRatesTotal - is a rates_total variable from the OnCalculate() function parameters;
  • const int aPrevCalc - prev_calculated variable from the OnCalculate() function;
  • double aDataHigh[] - the buffer with the High data for the indicator calculation;
  • double aDataLow[] - the buffer with the Low data for the indicator calculation;
  • double aDataClose[] - the buffer with the Close data for the indicator calculation;
  • double aVHF[] - indicator calculated value.

Additional methods:

  • int BarsRequired() - returns the minimum number of bars for the indicator calculation;
  • string Name() - returns the line with the indicator name.

Test_VHFOnArray.mq5 is a sample indicator showing CVHFOnArray class application. IncVHFOnArray file must be placed to MQL5\Include\IncOnArray of the terminal data folder (IncOnArray folder must be created).

Vertical Horizontal Filter (VHF) shows the current market phase: a trend or a flat. It was first described by A. White in 1991.

Example of use of CVHFOnArray class

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

ZigZag based on the fractals of a larger timeframe ZigZag based on the fractals of a larger timeframe

ZigZag based on the fractals of a larger timeframe considering VininI_FractalsTrend indicator data.

3D_Oscillator_HTF_Signal 3D_Oscillator_HTF_Signal

3D_Oscillator_Signal shows a trend direction or a signal for performing a deal generated by 3D_Oscillator as text messages with a trend color indication or deal direction and gives alerts or audio signals.

IncEnvelopesOnArray IncEnvelopesOnArray

The CEnvelopesOnArray class is intended for calculation of Envelopes on an indicator buffer.

IncPriceChannelOnArray IncPriceChannelOnArray

The CPriceChannelOnArray class is intended for calculation of the price channel on indicator buffers.