0
Views
0
Downloads
0
Favorites
ColorAML
//+------------------------------------------------------------------+
//| AML.mq5 |
//| andreybs |
//| andreybs@yandex.ru |
//+------------------------------------------------------------------+
//---- author of the indicator
#property copyright "Adaptive Market Level"
//---- author of the indicator
#property link "andreybs@yandex.ru"
//---- indicator version number
#property version "1.10"
//---- drawing the indicator in the main window
#property indicator_chart_window
//---- number of indicator buffers
#property indicator_buffers 2
//---- only one plot is used
#property indicator_plots 1
//+-----------------------------------+
//| Indicator drawing parameters |
//+-----------------------------------+
//---- drawing the indicator as a multicolored line
#property indicator_type1 DRAW_COLOR_LINE
//---- colors of the three-color line are
#property indicator_color1 clrRed,clrGray,clrMediumSlateBlue
//---- the indicator line is a continuous curve
#property indicator_style1 STYLE_SOLID
//---- Indicator line width is equal to 2
#property indicator_width1 2
//---- displaying the indicator label
//---- displaying of the bullish label of the indicator
#property indicator_label1 "AML"
//+----------------------------------------------+
//| Indicator input parameters |
//+----------------------------------------------+
input int Fractal=6;
input int Lag=7;
input int Shift=0; //horizontal shift of the indicator in bars
//+----------------------------------------------+
//---- declaration of dynamic arrays that will further be
// used as indicator buffers
double AMLBuffer[];
double ColorAMLBuffer[];
//---- Declaration of integer variables of data starting point
int min_rates_total,size;
//---- declaration of dynamic arrays that will further be
// used as ring buffers
int Count[];
double Smooth[];
//+------------------------------------------------------------------+
//| Recalculation of position of the newest element in the array |
//+------------------------------------------------------------------+
void Recount_ArrayZeroPos(int &CoArr[],// Return the current value of the price series by the link
int Size)
{
//----
int numb,Max1,Max2;
static int count=1;
Max2=Size;
Max1=Max2-1;
count--;
if(count<0) count=Max1;
for(int iii=0; iii<Max2; iii++)
{
numb=iii+count;
if(numb>Max1) numb-=Max2;
CoArr[iii]=numb;
}
//----
}
//+------------------------------------------------------------------+
//| calculation of maximum range of the price movement |
//+------------------------------------------------------------------+
double Range(int period,int start,const double &High[],const double &Low[])
{
//----
double max = High[ArrayMaximum(High,start,period)];
double min = Low[ArrayMinimum(Low,start,period)];
//----
return(max-min);
}
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
void OnInit()
{
//---- Initialization of variables of the start of data calculation
min_rates_total=Fractal+Lag;
//---- Initialization of variables
size=Lag+1;
//---- memory distribution for variables' arrays
ArrayResize(Count,size);
ArrayResize(Smooth,size);
//---- Initialization of arrays of variables
ArrayInitialize(Smooth,0.0);
ArrayInitialize(Count,0.0);
//---- set dynamic array as an indicator buffer
SetIndexBuffer(0,AMLBuffer,INDICATOR_DATA);
//---- indexing elements in the buffer as time series
ArraySetAsSeries(AMLBuffer,true);
//---- setting dynamic array as a color index buffer
SetIndexBuffer(1,ColorAMLBuffer,INDICATOR_COLOR_INDEX);
//---- indexing elements in the buffer as time series
ArraySetAsSeries(ColorAMLBuffer,true);
//---- shifting indicator 1 horizontally by Shift
PlotIndexSetInteger(0,PLOT_SHIFT,Shift);
//---- shifting the starting point for drawing indicator 1 by min_rates_total
PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,min_rates_total);
//---- initializations of variable for indicator short name
string shortname;
StringConcatenate(shortname,"AML(",Fractal,", ",Lag,", ",Shift,")");
//--- creation of the name to be displayed in a separate sub-window and in a pop up help
IndicatorSetString(INDICATOR_SHORTNAME,shortname);
//--- determining the accuracy of displaying the indicator values
IndicatorSetInteger(INDICATOR_DIGITS,_Digits);
//----
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(
const int rates_total, // amount of history in bars at the current tick
const int prev_calculated,// amount of history in bars at the previous tick
const datetime &time[],
const double &open[],
const double& high[], // price array of maximums of price for the calculation of indicator
const double& low[], // price array of price lows for the indicator calculation
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[]
)
{
//---- checking the number of bars to be enough for calculation
if(rates_total<min_rates_total) return(0);
//---- declaration of local variables
int MaxBar,limit,bar;
//---- calculation of the starting number limit for the bar recalculation loop
if(prev_calculated>rates_total || prev_calculated<=0)// checking for the first start of the indicator calculation
{
limit=rates_total-min_rates_total-1; // starting index for the calculation of all bars
ColorAMLBuffer[limit]=1;
}
else limit=rates_total-prev_calculated; // starting index for the calculation of new bars
MaxBar=rates_total-min_rates_total-3;
//---- indexing elements in arrays as timeseries
ArraySetAsSeries(high,true);
ArraySetAsSeries(low,true);
ArraySetAsSeries(open,true);
ArraySetAsSeries(close,true);
//---- main indicator calculation loop
for(bar=limit; bar>=0 && !IsStopped(); bar--)
{
double R1 = Range(Fractal,bar,high,low)/Fractal;
double R2 = Range(Fractal,bar+Fractal,high,low)/Fractal;
double R3 = Range(2*Fractal,bar,high,low)/(2*Fractal);
double dim=0;
if(R1+R2>0 && R3>0) dim=(MathLog(R1+R2)-MathLog(R3))*1.44269504088896;
double alpha=MathExp(-Lag*(dim-1.0));
alpha=MathMin(alpha,1.0);
alpha=MathMax(alpha,0.01);
double price=(high[bar]+low[bar]+2*open[bar]+2*close[bar])/6;
Smooth[Count[0]]=alpha*price+(1.0-alpha)*Smooth[Count[1]];
if(MathAbs(Smooth[Count[0]]-Smooth[Count[Lag]])>=Lag*Lag*_Point) AMLBuffer[bar]=Smooth[Count[0]];
else AMLBuffer[bar]=AMLBuffer[bar+1];
ColorAMLBuffer[bar]=ColorAMLBuffer[bar+1];
if(AMLBuffer[bar]>AMLBuffer[bar+1]) ColorAMLBuffer[bar]=2;
if(AMLBuffer[bar]<AMLBuffer[bar+1]) ColorAMLBuffer[bar]=0;
if(bar) Recount_ArrayZeroPos(Count,Lag+1);
}
//----
return(rates_total);
}
//+------------------------------------------------------------------+
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

`code`
```
code block
```
> blockquote
- Item 1
- Item 2
1. First item
2. Second item
---