Rejoignez notre page de fans
Ultra Spearman Rank Correlation - indicateur pour MetaTrader 5
- Vues:
- 10359
- Note:
- Publié:
- 2012.02.07 15:24
- Mise à jour:
- 2023.03.29 13:44
- Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
This indicator is based on values of the several signal lines of SpearmanRankCorrelation indicator. The signal lines calculation algorithm looks as follows. The input parameters contain
- rangeN - averaging period;
The set of the signal lines is calculated using the arithmetic progression formula:
SignalPeriod(Number) = StartLength + Number * Step
The value Number variable vary from 0 to StepsTotal. The resulting periods added to the arrays and used in calculation of the averaged values of SpearmanRankCorrelation indicator. The calculation of current trend direction is based on the averaged trend values for all signal lines.
Finally, the positive and negative values of the trends are averaged and used as indicator lines, shown as a color histogram, plotted using the DRAW_COLOR_HISTOGRAM2 drawing style. Historgram color depends on trend direction, the histogram width depends on strength of the trend.
For indicator values outside the overbought and oversold levels the dark colors are used. For the overbought/oversold values the light colors are used.
Input parameters:
//+----------------------------------------------+ //| Indicator input parameters | //+----------------------------------------------+ input int rangeN=14; //---- input Smooth_Method W_Method=MODE_JJMA; // Smooth method input int StartLength=3; // Start length input int WPhase=100; // Phase //---- input uint Step=5; // Period step input uint StepsTotal=10; // Steps total //---- input Smooth_Method SmoothMethod=MODE_JJMA; // Smooth method input int SmoothLength=3; // Smooth length input int SmoothPhase=100; // Smooth phase //---- input uint UpLevel=80; // Overbought level (in %) input uint DnLevel=20; // Oversold level (in %) input color UpLevelsColor=Blue; // Overbought level color input color DnLevelsColor=Blue; // Oversold level color input STYLE Levelstyle=DASH_; // Level style input WIDTH LevelsWidth=Width_1; // Level width
The indicator has a possibility to select the smoothing out of the dozen of possible versions:
- SMA - simple moving average;
- EMA - exponential moving average;
- SMMA - smoothed moving average;
- LWMA - linear weighted moving average;
- JJMA - JMA adaptive average;
- JurX - ultralinear smoothing;
- ParMA - parabolic smoothing;
- T3 - Tillson's multiple exponential smoothing;
- VIDYA - smoothing with the use of Tushar Chande's algorithm;
- AMA - smoothing with the use of Perry Kaufman's algorithm.
It should be noted that Phase1 and Phase2 parameters have completely different meaning for different smoothing algorithms. For JMA it is an external Phase variable changing from -100 to +100. For T3 it is a smoothing ratio multiplied by 100 for better visualization, for VIDYA it is a CMO oscillator period and for AMA it is a slow EMA period. In other algorithms these parameters do not affect smoothing. For AMA fast EMA period is a fixed value and is equal to 2 by default. The ratio of raising to the power is also equal to 2 for AMA.
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".
The indicator uses SpearmanRankCorrelation.mq5 indicator, it must be placed to terminal_data_folder\MQL5\Include.
Ultra Spearman Rank Correlation indicator
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/787
Most visually convenient trend power indicator based on Standard Deviation.
JBrainTrend1Trend indicator of the popular BrainTrend1 trading system with preliminary price timeseries smoothing.
In this version of Chande Momentum Oscillator the smoothed price is used for the calculations.
OpenCL TestA small example of the Mandelbrot fractal calculation in OpenCL. The OpenCL accelerates calculations of fractal approximately up to 100 times in comparison with the CPU calculations.