Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 3773
- Note:
- Publié:
- 2018.06.06 14:22
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Integral Linear Regression Moving Average (ILRS MA).
The indicator has two input parameters:
- Period - calculation period;
- Applied price - price used for calculations.
Calculation:
ILRS[i] = (N*Sum1 - Sum*Sumy)/(Sum*Sum - N*Sum2) + MVA(I,N)
where
Sum = N*(N-1)*0.5, Sum2 = N*(N-1)*(2*N-1)/6, Sum1 = 1*Price[i-1] + 2*Price[i-2] + … + (N-1)*Price[i-N+1], Sumy = Price[i] + Price[i-1] + … + Price[i-N+1], MVA(i,N) – a simple moving average (SMA), N - Period.
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/20443

An indicator of the dominant direction of closing of bars.

Triangular Moving Average.

A trading system based on the Donchian Channel indicator.

An indicator of important extremums.