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
Vues:
7262
Note:
(24)
Publié:
2013.01.30 09:39
Mise à jour:
2023.03.29 13:42
\MQL5\Include\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The real author:

WizardSerg

The SlopeDirectionLine trend indicator with the ability to change the algorithms of averaging and triggering alerts, push notifications and sending e-mail messages.

Indicator input parameters:

//+-----------------------------------+
//| Indicator input parameters        |
//+-----------------------------------+
input Smooth_Method MA_Method1=MODE_LWMA; // First smoothing method
input uint Length1=12;                    // First smoothing depth                
input int Phase1=15;                      // First smoothing parameter
//--- Phase1: for JJMA that can change withing the range -100 ... +100. It impacts the quality of the intermediate process of smoothing;
//--- Phase1: for VIDIA, it is a CMO period, for AMA, it is a slow moving average period
input Smooth_Method MA_Method2=MODE_SMA;  // Second smoothing averaging method
input int Phase2=15;                      // Second smoothing parameter
//---Phase2: for JJMA that can change withing the range -100 ... +100. It impacts the quality of the intermediate process of smoothing;
//---Phase2: for VIDIA, it is a CMO period, for AMA, it is a slow moving average period
input Applied_price_ IPC=PRICE_CLOSE;     // Price constant
input int Shift=0;                        // Horizontal shift of the indicator in bars
input int PriceShift=0;                   // Vertical shift of the indicator in points
input bool On_Push = false;                           // Allow to send push-messages
input bool On_Email = false;                          // Allow to send e-mail messages
input bool On_Alert = true;                           // Allow to put alert
input bool On_Play_Sound = false;                     // Allow to put sound signal
input string NameFileSound = "expert.wav";            // Name of the file with sound
input string  CommentSirName="SlopeDirectionLine: ";  // The first part of the alert comment
input uint SignalBar=1;                               // Bar index for getting an entry signal

The indicator uses SmoothAlgorithms.mqh library classes (must be copied to the terminal_data_folder\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging price series for intermediate calculations without using additional buffers".

Fig.1 The SlopeDirectionLine indicator

Fig.1 The SlopeDirectionLine indicator

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

Paromon Paromon

The indicator draws the lines of day start and its high and low price values.

super-signals super-signals

The semaphore arrow indicator of trend change

R-Squared_v1 R-Squared_v1

R-squared is the linear regression indicator to calculate "reliability" of the current trend

QQEA QQEA

QQEA is Forex oscillator with an undistinguished name drawn on the basis of the Moving Averages and the RSI technical indicator.