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
Indicateurs

Relation - Chart Builder Legacy - indicateur pour MetaTrader 5

Vues:
5709
Note:
(13)
Publié:
2017.01.26 09:10
\MQL5\Include\AIV\
Resources.mqh (24.35 KB) afficher
\MQL5\Indicators\AIV\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Indicator for building custom charts, which are based on user-defined formula.

Charts are drawn in bars of the timeframe specified in the indicator settings. Charts of the selected instruments are synchronized in time.

Spaces in the formula are optional, fractional numbers are only specified using the point.

To avoid inconsistency in measurement units and to convert everything into the deposit currency, set the InpAlign parameter to true

Supported operations, by priority of execution:

Parentheses: (a ... b)
Exponentiation: a ^ b
Division: a / b
Multiplication: a * b
Addition: a + b
Subtraction: a - b

Example of application, to find the separation between the currency baskets for the last 1000 bars on the M1 chart:

InpDepth = 1000
InpPeriod - PERIOD_M1
InpExpression = "3 * EURUSD * 1.5 * AUDUSD * GBPUSD - (5 * AUDGBP - 2 * EURGBP) * 1.2 * CHFGBP"

This results in a chart of the synthetic pair, with the condition of buying 3 lots of EURUSD, 1.5 lots of AUDUSD and so on.

Idea of the indicator has been adopted from here and MS Excel.

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

The MasterMind The MasterMind

The Expert Advisor uses the iStochastic (Stochastic) Oscillator, iWPR (Larry Williams' Percent Range) indicators.

Bollinger Bands Bollinger Bands

The Expert Advisor opens trades based on the Bollinger Bands indicator.

PCA Synthetics - Recycle Legacy PCA Synthetics - Recycle Legacy

Indicator for automatic selection of the coefficients for every instrument in a pseudo-stationary portfolio, which tends to equilibrium at zero.

Fractal_Moving_Average Fractal_Moving_Average

Fractal moving average with indication of the last value with a price label with the ability to change the averaging algorithm.