Watch how to download trading robots for free
Find us on Twitter!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
3074
Rating:
(19)
Published:
2012.01.13 13:09
Updated:
2017.09.06 10:13
\MQL5\Include\IncOnArray\ \MQL5\Indicators\
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

CRVIOnArray class is designed for calculation of RVI (Relative Vigor Index) values on indicator buffers.

Usage:

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

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 aDataOpen[] - the buffer with the Open data for the indicator calculation;
  • 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 aM[] - intermediate buffer for calculations;
  • double aMS[] - intermediate buffer for calculations;
  • double aR[] - intermediate buffer for calculations;
  • double aRS[] - intermediate buffer for calculations;
  • double aMain[] - buffer with the main line calculated values;
  • double aSignal[] - buffer with the signal line calculated values.

Additional methods:

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

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

CMAOnArray class from the IncMAOnArray file is needed for the proper work. It can be found here.

The main point of Relative Vigor Index Technical Indicator (RVI) is that on the bull market the closing price is, as a rule, higher, than the opening price. It is the other way round on the bear market. So the idea behind Relative Vigor Index is that the vigor, or energy, of the move is thus established by where the prices end up at the close.

Example of use of CRVIOnArray class

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/654

sSyncScroll sSyncScroll

Script for the charts simultaneous scrolling.

ElderImpulseSystem_HTF_Signal ElderImpulseSystem_HTF_Signal

ElderImpulseSystem_HTF_Signal displays trend directions from the last bars of the ElderImpulseSystem as a sequence of graphical objects. The number of bars to be used is set in the input parameters.

Quotes Monitoring  (memory-mapped file) Quotes Monitoring (memory-mapped file)

This Expert Advisor is example of use of the Memory Mapping DLL for working with File Mapping functions. In this example the Expert Advisor create a virtual (memory-mapped) file and start to update the quotes on symbol. Using this way, Expert Advisors can exchange data (for example, quotes) using common memory-mapped file.

Memory Mapping Memory Mapping

DLL (MS VC++ 2010) for working with Memory Mapped files.