Files
Range-Bars-Charting/Include/smoothalgorithms.mqh
T

3301 lines
131 KiB
Plaintext

//MQL5 Version May 23, 2014 Final
//+------------------------------------------------------------------+
//| SmoothAlgorithms.mqh |
//| Copyright © 2013, Nikolay Kositsin |
//| Khabarovsk, farria@mail.redcom.ru |
//+------------------------------------------------------------------+
#property copyright "2013, Nikolay Kositsin"
#property link "farria@mail.redcom.ru"
#property version "3.24"
//+------------------------------------------------------------------+
//| Classes for smoothing prices series |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Functional utilities for the classes of smoothing algorithms |
//+------------------------------------------------------------------+
class CMovSeriesTools
{
public:
void MALengthCheck(string LengthName,int ExternLength);
void MALengthCheck(string LengthName,double ExternLength);
protected:
bool BarCheck1(int begin,int bar,bool Set);
bool BarCheck2(int begin,int bar,bool Set,int Length);
bool BarCheck3(int begin,int bar,bool Set,int Length);
bool BarCheck4(int rates_total,int bar,bool Set);
bool BarCheck5(int rates_total,int bar,bool Set);
bool BarCheck6(int rates_total,int bar,bool Set);
void LengthCheck(int &ExternLength);
void LengthCheck(double &ExternLength);
void Recount_ArrayZeroPos(int &count,
int Length,
uint prev_calculated,
uint rates_total,
double series,
int bar,
double &Array[],
bool set
);
int Recount_ArrayNumber(int count,int Length,int Number);
bool SeriesArrayResize(string FunctionsName,
int Length,
double &Array[],
int &Size_
);
bool ArrayResizeErrorPrint(string FunctionsName,int &Size_);
};
//+------------------------------------------------------------------+
//| The functions for the classic smoothing of price series |
//+------------------------------------------------------------------+
class CMoving_Average : public CMovSeriesTools
{
public:
double MASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
ENUM_MA_METHOD MA_Method, // Smoothing method (MODE_SMA, MODE_EMA, MODE_SMMA, MODE_LWMA)
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
double SMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
double EMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
double Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
double SMMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
double LWMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
double m_SeriesArray[];
int m_Size_,m_count,m_weight;
double m_Moving,m_MOVING,m_Pr;
double m_sum,m_SUM,m_lsum,m_LSUM;
};
//+------------------------------------------------------------------+
//| The algorithm of getting the standard deviation |
//+------------------------------------------------------------------+
class CStdDeviation : public CMovSeriesTools
{
public:
double StdDevSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double deviation, // Deviation
double series, // Value of the price series calculated for the bar with the 'bar' index
double MovSeries, // Value of the average, on which basis the StdDeviation is calculated
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
int m_Size_,m_count;
double m_Sum,m_SUM,m_Sum2,m_SUM2;
double m_SeriesArray[];
};
//+------------------------------------------------------------------+
//| The JMA algorithm of the unspecified price series smoothing |
//+------------------------------------------------------------------+
class CJJMA : public CMovSeriesTools
{
public:
double JJMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Din, // permission to change the Length and Phase parameters at every bar.
// 0 - prohibition to change the parameters, any other value means permission.
double Phase, // Parameter that can change withing the range -100 ... +100. It impacts the quality of the intermediate process of smoothing
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
void JJMALengthCheck(string LengthName,int ExternLength);
void JJMAPhaseCheck(string PhaseName,int ExternPhase);
protected:
void JJMAInit(uint begin,int Din,double Phase,double Length,double series,uint bar);
//---- Declaration of global variables
bool m_start;
//----
double m_array[62];
//----
double m_degree,m_Phase,m_sense;
double m_Krx,m_Kfd,m_Krj,m_Kct;
double m_var1,m_var2;
//----
int m_pos2,m_pos1;
int m_Loop1,m_Loop2;
int m_midd1,m_midd2;
int m_count1,m_count2,m_count3;
//----
double m_ser1,m_ser2;
double m_Sum1,m_Sum2,m_JMA;
double m_storage1,m_storage2,m_djma;
double m_hoop1[128],m_hoop2[11],m_data[128];
//---- Variables for restoring calculations on an unclosed bar
int m_pos2_,m_pos1_;
int m_Loop1_,m_Loop2_;
int m_midd1_,m_midd2_;
int m_count1_,m_count2_,m_count3_;
//----
double m_ser1_,m_ser2_;
double m_Sum1_,m_Sum2_,m_JMA_;
double m_storage1_,m_storage2_,m_djma_;
double m_hoop1_[128],m_hoop2_[11],m_data_[128];
//----
bool m_bhoop1[128],m_bhoop2[11],m_bdata[128];
};
//+------------------------------------------------------------------+
//| The Tilson's algorithm of smoothing of unspecified price series |
//+------------------------------------------------------------------+
class CT3 : public CMovSeriesTools
{
public:
double T3Series(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Din, // permission to change the Length parameter at every bar.
// 0 - prohibition to change the parameters, any other value means permission.
double Curvature, // Coefficient (its value is increased 100 times for convenience!)
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
void T3Init(uint begin,
int Din,
double Curvature,
double Length,
double series,
uint bar
);
//---- Declaration of global variables
double m_b2,m_b3;
//----
double m_e1,m_e2,m_e3,m_e4,m_e5,m_e6;
double m_E1,m_E2,m_E3,m_E4,m_E5,m_E6;
double m_c1,m_c2,m_c3,m_c4,m_w1,m_w2;
};
//+------------------------------------------------------------------+
//| The algorithm of the ultralinear price series smoothing |
//+------------------------------------------------------------------+
class CJurX : public CMovSeriesTools
{
public:
double JurXSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Din, // permission to change the Length parameter at every bar.
// 0 - prohibition to change the parameters, any other value means permission.
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
void JurXInit(uint begin,
int Din,
double Length,
double series,
uint bar
);
//---- Declaration of global variables
double m_AB,m_AC;
double m_f1,m_f2,m_f3,m_f4,m_f5;
double m_f6,m_Kg,m_Hg,m_F1,m_F2;
double m_F3,m_F4,m_F5,m_F6,m_w;
};
//+------------------------------------------------------------------+
//| Tushar Chande's smoothing algorithms for any prices series |
//+------------------------------------------------------------------+
class CCMO : public CMovSeriesTools
{
public:
double VIDYASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
int CMO_Length, // CMO period
double EMA_Length,
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
double CMOSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int CMO_Length, // CMO period
double series,
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
double m_dSeriesArray[];
int m_Size_,m_count;
double m_UpSum_,m_UpSum,m_DnSum_,m_DnSum,m_Vidya,m_Vidya_;
double m_AbsCMO_,m_AbsCMO,m_series1,m_series1_,m_SmoothFactor;
};
//+-------------------------------------------------------------------------------------------------+
//| The algorithm of getting the AMA indicator calculated on the basis of unspecified price series |
//+-------------------------------------------------------------------------------------------------+
class CAMA : public CMovSeriesTools
{
public:
double AMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Length, // AMA period
int Fast_Length, // fast moving average period
int Slow_Length, // slow moving average period
double Rate, // rate of the smoothing constant
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
//----+
double m_SeriesArray[];
double m_dSeriesArray[];
double m_NOISE,m_noise;
double m_Ama,m_AMA_,m_slowSC,m_fastSC,m_dSC;
int m_Size_1,m_Size_2,m_count;
};
//+------------------------------------------------------------------+
//| Unspecified price series parabolic smoothing algorithm |
//+------------------------------------------------------------------+
class CParMA : public CMovSeriesTools
{
public:
double ParMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
void ParMAInit(double Length);
double m_SeriesArray[];
int m_Size_,m_count;
int m_sum_x,m_sum_x2,m_sum_x3,m_sum_x4;
};
//+--------------------------------------------------------------------------+
//| The momentum algorithm (Murphy's version!) from unspecified price series |
//+--------------------------------------------------------------------------+
class CMomentum : public CMovSeriesTools
{
public:
double MomentumSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated,// Amount of bars in history at previous call
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
double m_SeriesArray[];
int m_Size_,m_count;
};
//+------------------------------------------------------------------+
//| The algorithm of normalized momentum calculated on price series |
//+------------------------------------------------------------------+
class CnMomentum : public CMovSeriesTools
{
public:
double nMomentumSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated,// Amount of bars in history at previous call
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
double m_SeriesArray[];
int m_Size_,m_count;
};
//+------------------------------------------------------------------+
//| The algorithm Speed of changing of price series |
//+------------------------------------------------------------------+
class CROC : public CMovSeriesTools
{
public:
double ROCSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
protected:
double m_SeriesArray[];
int m_Size_,m_count;
};
//+-----------------------------------------------------------------------------+
//| The functions for price series smoothing using the FATL digital filter |
//+-----------------------------------------------------------------------------+
class CFATL : public CMovSeriesTools
{
public:
double FATLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
CFATL();
protected:
double m_SeriesArray[39];
int m_Size_,m_count;
double m_FATL;
//---- declaration and initialization of an array for the coefficient of the digital filter
double m_FATLTable[39];
};
//+-----------------------------------------------------------------------------+
//| The functions for price series smoothing using the SATL digital filter |
//+-----------------------------------------------------------------------------+
class CSATL : public CMovSeriesTools
{
public:
double SATLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of history in bars at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
CSATL();
protected:
double m_SeriesArray[65];
int m_Size_,m_count;
double m_SATL;
//---- declaration and initialization of an array for the coefficient of the digital filter
double m_SATLTable[65];
};
//+-----------------------------------------------------------------------------+
//| The functions for price series smoothing using the RFTL digital filter |
//+-----------------------------------------------------------------------------+
class CRFTL : public CMovSeriesTools
{
public:
double RFTLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
CRFTL();
protected:
double m_SeriesArray[44];
int m_Size_,m_count;
double m_RFTL;
//---- declaration and initialization of an array for the coefficient of the digital filter
double m_RFTLTable[44];
};
//+-----------------------------------------------------------------------------+
//| The functions for price series smoothing using the RSTL digital filter |
//+-----------------------------------------------------------------------------+
class CRSTL : public CMovSeriesTools
{
public:
double RSTLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
CRSTL();
protected:
double m_SeriesArray[99];
int m_Size_,m_count;
double m_RSTL;
//---- declaration and initialization of an array for the coefficient of the digital filter
double m_RSTLTable[99];
};
//+------------------------------------------------------------------+
//| Universal smoothing algorithm |
//+------------------------------------------------------------------+
class CXMA
{
public:
enum Smooth_Method
{
MODE_SMA_, //SMA
MODE_EMA_, //EMA
MODE_SMMA_, //SMMA
MODE_LWMA_, //LWMA
MODE_JJMA, //JJMA
MODE_JurX, //JurX
MODE_ParMA, //ParMA
MODE_T3, //T3
MODE_VIDYA, //VIDYA
MODE_AMA //AMA
};
double XMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
// 0 - prohibition to change the parameters, any other value means permission.
Smooth_Method Method,
int Phase,// Parameter that changes within the range -100 ... +100,
// impacts the transitional smoothing process quality
int Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
);
int GetStartBars(Smooth_Method Method,int Length,int Phase);
string GetString_MA_Method(Smooth_Method Method);
void XMAPhaseCheck(string PhaseName,int ExternPhase,Smooth_Method Method);
void XMALengthCheck(string LengthName,int ExternLength);
void XMAInit(Smooth_Method Method);
CXMA(){m_init=false;};
~CXMA();
protected:
CMoving_Average *SMA;
CMoving_Average *EMA;
CMoving_Average *SMMA;
CMoving_Average *LWMA;
CJJMA *JJMA;
CJurX *JurX;
CParMA *ParMA;
CT3 *T3;
CCMO *VIDYA;
CAMA *AMA;
bool m_init;
Smooth_Method m_Method;
};
//+------------------------------------------------------------------+
//| GetStartBars |
//+------------------------------------------------------------------+
int GetStartBars(Smooth_Method Method,int Length,int Phase)
{
//----+
switch(Method)
{
case MODE_SMA_: return(Length);
case MODE_EMA_: return(0);
case MODE_SMMA_: return(Length+1);
case MODE_LWMA_: return(Length);
case MODE_JJMA: return(30);
case MODE_JurX: return(0);
case MODE_ParMA: return(Length);
case MODE_T3: return(0);
case MODE_VIDYA: return(Phase+2);
case MODE_AMA: return(Length+2);
}
//----+
return(0);
}
//Version May 1, 2010
//+------------------------------------------------------------------+
//| iPriceSeries.mqh |
//| Copyright © 2010, Nikolay Kositsin |
//| Khabarovsk, farria@mail.redcom.ru |
//+------------------------------------------------------------------+
/*
* The iPriceSeries() function returns the input price of a bar by its index
* bar and by the number of the price 'applied_price':
* 1-CLOSE, 2-OPEN, 3-HIGH, 4-LOW, 5-MEDIAN, 6-TYPICAL, 7-WEIGHTED,
* 8-SIMPLE, 9-QUARTER, 10-TRENDFOLLOW, 11-0.5 * TRENDFOLLOW.
*
* Example:
* double dPrice = iPriceSeries("GBPJPY", 240, 5, bar, true)
* - iPriceSeries("GBPJPY", 240, 5, bar + 1, true);
*/
//+------------------------------------------------------------------+
/*
//---- declaration and initialization of the enumeration of price constants types
enum Applied_price_ //Type of constant
{
PRICE_CLOSE_ = 1, // 1
PRICE_OPEN_, // 2
PRICE_HIGH_, // 3
PRICE_LOW_, // 4
PRICE_MEDIAN_, // 5
PRICE_TYPICAL_, // 6
PRICE_WEIGHTED_, // 7
PRICE_SIMPLE, // 8
PRICE_QUARTER_, // 9
PRICE_TRENDFOLLOW0_, // 10
PRICE_TRENDFOLLOW1_ // 11
};
*/
//+------------------------------------------------------------------+
//| PriceSeries() function |
//+------------------------------------------------------------------+
double PriceSeries(uint applied_price, // Price constant
uint bar, // Index of shift relative to the current bar for a specified number of periods back or forward).
const double &Open[],
const double &Low[],
const double &High[],
const double &Close[]
)
{
//----+
switch(applied_price)
{
//---- Price constants from the ENUM_APPLIED_PRICE enumeration
case PRICE_CLOSE: return(Close[bar]);
case PRICE_OPEN: return(Open [bar]);
case PRICE_HIGH: return(High [bar]);
case PRICE_LOW: return(Low[bar]);
case PRICE_MEDIAN: return((High[bar]+Low[bar])/2.0);
case PRICE_TYPICAL: return((Close[bar]+High[bar]+Low[bar])/3.0);
case PRICE_WEIGHTED: return((2*Close[bar]+High[bar]+Low[bar])/4.0);
//----+
case 8: return((Open[bar] + Close[bar])/2.0);
case 9: return((Open[bar] + Close[bar] + High[bar] + Low[bar])/4.0);
//----
case 10:
{
if(Close[bar]>Open[bar]) return(High[bar]);
else
{
if(Close[bar]<Open[bar]) return(Low[bar]);
else return(Close[bar]);
}
}
//----
case 11:
{
if(Close[bar]>Open[bar])return((High[bar]+Close[bar])/2.0);
else
{
if(Close[bar]<Open[bar]) return((Low[bar]+Close[bar])/2.0);
else return(Close[bar]);
}
}
//----
case 12:
{
double res=High[bar]+Low[bar]+Close[bar];
if(Close[bar]<Open[bar]) res=(res+Low[bar])/2;
if(Close[bar]>Open[bar]) res=(res+High[bar])/2;
if(Close[bar]==Open[bar]) res=(res+Close[bar])/2;
return(((res-Low[bar])+(res-High[bar]))/2);
}
//----
default: return(Close[bar]);
}
//----+
//return(0);
}
//+------------------------------------------------------------------+
//| iPriceSeries() function |
//+------------------------------------------------------------------+
double iPriceSeries(string symbol, // Tool symbol name. NULL means current symbol.
ENUM_TIMEFRAMES timeframe, // Period. Can be one of the chart periods. 0 means the current chart period.
uint applied_price, // Price constant
uint bar, // Index of shift relative to the current bar for a specified number of periods back or forward).
bool set // Arrays indexing direction
)
{
//----+
uint Bar;
double diPriceSeries,price[1];
//----
if(!set)
Bar=Bars(symbol,timeframe)-1-bar;
else Bar=bar;
//----
switch(applied_price)
{
case 1: CopyClose(symbol, timeframe, Bar, 1, price); diPriceSeries = price[0]; break;
case 2: CopyOpen (symbol, timeframe, Bar, 1, price); diPriceSeries = price[0]; break;
case 3: CopyHigh (symbol, timeframe, Bar, 1, price); diPriceSeries = price[0]; break;
case 4: CopyLow (symbol, timeframe, Bar, 1, price); diPriceSeries = price[0]; break;
//----
case 5: CopyHigh(symbol,timeframe,Bar,1,price); diPriceSeries=price[0];
CopyLow(symbol,timeframe,Bar,1,price); diPriceSeries+=price[0];
diPriceSeries/=2.0;
break;
//----
case 6: CopyClose(symbol,timeframe,Bar,1,price); diPriceSeries=price[0];
CopyHigh (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
CopyLow (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
diPriceSeries/=3.0;
break;
//----
case 7: CopyClose(symbol,timeframe,Bar,1,price); diPriceSeries=price[0]*2;
CopyHigh (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
CopyLow (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
diPriceSeries/=4.0;
break;
//----
case 8: CopyClose(symbol,timeframe,Bar,1,price); diPriceSeries=price[0];
CopyOpen(symbol,timeframe,Bar,1,price); diPriceSeries+=price[0];
diPriceSeries/=2.0;
break;
//----
case 9: CopyClose(symbol,timeframe,Bar,1,price); diPriceSeries=price[0];
CopyOpen (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
CopyHigh (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
CopyLow (symbol, timeframe, Bar, 1, price); diPriceSeries += price[0];
diPriceSeries/=4.0;
break;
//----
case 10:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
CopyClose(symbol,timeframe,Bar,1,Close_);
CopyOpen(symbol,timeframe,Bar,1,Open_);
CopyHigh(symbol,timeframe,Bar,1,High_);
CopyLow(symbol,timeframe,Bar,1,Low_);
//----
if(Close_[0]>Open_[0])diPriceSeries=High_[0];
else
{
if(Close_[0]<Open_[0])
diPriceSeries=Low_[0];
else diPriceSeries=Close_[0];
}
break;
}
//----
case 11:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
CopyClose(symbol,timeframe,Bar,1,Close_);
CopyOpen(symbol,timeframe,Bar,1,Open_);
CopyHigh(symbol,timeframe,Bar,1,High_);
CopyLow(symbol,timeframe,Bar,1,Low_);
//----
if(Close_[0]>Open_[0])diPriceSeries=(High_[0]+Close_[0])/2.0;
else
{
if(Close_[0]<Open_[0])
diPriceSeries=(Low_[0]+Close_[0])/2.0;
else diPriceSeries=Close_[0];
}
break;
}
//----
case 12:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
CopyClose(symbol,timeframe,Bar,1,Close_);
CopyOpen(symbol,timeframe,Bar,1,Open_);
CopyHigh(symbol,timeframe,Bar,1,High_);
CopyLow(symbol,timeframe,Bar,1,Low_);
//----
double res=High_[0]+Low_[0]+Close_[0];
if(Close_[0]<Open_[0]) res=(res+Low_[0])/2;
if(Close_[0]>Open_[0]) res=(res+High_[0])/2;
if(Close_[0]==Open_[0]) res=(res+Close_[0])/2;
diPriceSeries=((res-Low_[0])+(res-High_[0]))/2;
break;
}
//----
default: CopyClose(symbol,timeframe,Bar,1,price); diPriceSeries=price[0]; break;
}
//----+
return(diPriceSeries);
}
//+------------------------------------------------------------------+
//| bPriceSeries() function |
//+------------------------------------------------------------------+
bool bPriceSeries(string symbol, // Tool symbol name. NULL means current symbol.
ENUM_TIMEFRAMES timeframe, // Period. Can be one of the chart periods. 0 means the current chart period.
int rates_total, // amount of history in bars at the current tick (if the set parameter is equal to true,
// then value of the parameter is not needed in the function calculation and can be equal to 0)
uint applied_price,// Price constant
uint bar, // Index of shift relative to the current bar for a specified number of periods back or forward).
bool set, // Arrays indexing direction
double &Price_ // return the obtained value by the link
)
{
//----+
uint Bar;
double series[];
ArraySetAsSeries(series,true);
//----
if(!set)
Bar=rates_total-1-bar;
else Bar=bar;
//----
switch(applied_price)
{
case 1: if(CopyClose(symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ = series[0]; break;
case 2: if(CopyOpen (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ = series[0]; break;
case 3: if(CopyHigh (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ = series[0]; break;
case 4: if(CopyLow (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ = series[0]; break;
//----
case 5: if(CopyHigh(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0];
if(CopyLow(symbol,timeframe,Bar,1,series)<0) return(false); Price_+=series[0];
Price_/=2.0;
break;
//----
case 6: if(CopyClose(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0];
if(CopyHigh (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
if(CopyLow (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
Price_/=3.0;
break;
//----
case 7: if(CopyClose(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0]*2;
if(CopyHigh (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
if(CopyLow (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
Price_/=4.0;
break;
//----
case 8: if(CopyClose(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0];
if(CopyOpen(symbol,timeframe,Bar,1,series)<0) return(false); Price_+=series[0];
Price_/=2.0;
break;
//----
case 9: if(CopyClose(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0];
if(CopyOpen (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
if(CopyHigh (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
if(CopyLow (symbol, timeframe, Bar, 1, series) < 0) return(false); Price_ += series[0];
Price_/=4.0;
break;
//----
case 10:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
if(CopyClose(symbol, timeframe, Bar, 1, Close_) < 0) return(false);
if(CopyOpen (symbol, timeframe, Bar, 1, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, Bar, 1, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, Bar, 1, Low_ ) < 0) return(false);
//----
if(Close_[0]>Open_[0])Price_=High_[0];
else
{
if(Close_[0]<Open_[0])
Price_=Low_[0];
else Price_=Close_[0];
}
break;
}
//----
case 11:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
if(CopyClose(symbol, timeframe, Bar, 1, Close_) < 0) return(false);
if(CopyOpen (symbol, timeframe, Bar, 1, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, Bar, 1, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, Bar, 1, Low_ ) < 0) return(false);
//----
if(Close_[0]>Open_[0])Price_=(High_[0]+Close_[0])/2.0;
else
{
if(Close_[0]<Open_[0])
Price_=(Low_[0]+Close_[0])/2.0;
else Price_=Close_[0];
}
break;
}
//----
case 12:
{
double Open_[1],Low_[1],High_[1],Close_[1];
//----
if(CopyClose(symbol, timeframe, Bar, 1, Close_) < 0) return(false);
if(CopyOpen (symbol, timeframe, Bar, 1, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, Bar, 1, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, Bar, 1, Low_ ) < 0) return(false);
//----
double res=High_[0]+Low_[0]+Close_[0];
if(Close_[0]<Open_[0]) res=(res+Low_[0])/2;
if(Close_[0]>Open_[0]) res=(res+High_[0])/2;
if(Close_[0]==Open_[0]) res=(res+Close_[0])/2;
Price_=((res-Low_[0])+(res-High_[0]))/2;
break;
}
//----
default: if(CopyClose(symbol,timeframe,Bar,1,series)<0) return(false); Price_=series[0]; break;
}
//----+
return(true);
}
//+------------------------------------------------------------------+
//| bPriceSeriesOnArray() function |
//+------------------------------------------------------------------+
bool bPriceSeriesOnArray(string symbol, // Tool symbol name. NULL means current symbol.
ENUM_TIMEFRAMES timeframe, // Period. Can be one of the chart periods. 0 means the current chart period.
uint applied_price, // Price constant
int start_pos, // Number of the first copied element
int count, // Number of the elements to be copied
double &series[] // array, to which the information is copied
)
{
//----+
ArraySetAsSeries(series,true);
switch(applied_price)
{
case 1: if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false); break;
case 2: if(CopyOpen (symbol, timeframe, start_pos, count, series) < 0) return(false); break;
case 3: if(CopyHigh (symbol, timeframe, start_pos, count, series) < 0) return(false); break;
case 4: if(CopyLow (symbol, timeframe, start_pos, count, series) < 0) return(false); break;
//----
case 5:
{
double Low_[];
ArraySetAsSeries(Low_,true);
if(CopyHigh(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
series[kkk]=(series[kkk]+Low_[kkk])/2.0;
break;
}
//----
case 6:
{
double Low_[],High_[];
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
series[kkk]=(series[kkk]+High_[kkk]+Low_[kkk])/3.0;
break;
}
//----
case 7:
{
double Low_[],High_[];
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
series[kkk]=(2*series[kkk]+High_[kkk]+Low_[kkk])/4.0;
break;
}
//----
case 8:
{
double Open_[];
ArraySetAsSeries(Open_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyOpen (symbol, timeframe, start_pos, count, Open_ ) < 0) return(false);
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
series[kkk]=(series[kkk]+Open_[kkk])/2.0;
break;
}
//----
case 9:
{
double Open_[],Low_[],High_[];
ArraySetAsSeries(Open_,true);
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyOpen (symbol, timeframe, start_pos, count, Open_ ) < 0) return(false);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
series[kkk]=(Open_[kkk]+series[kkk]+High_[kkk]+Low_[kkk])/4.0;
break;
}
//----
case 10:
{
double Open_[],Low_[],High_[];
ArraySetAsSeries(Open_,true);
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyOpen (symbol, timeframe, start_pos, count, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
//----
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
{
if(series[kkk]>Open_[kkk]) series[kkk]=High_[kkk];
else
{
if(series[kkk]<Open_[kkk])
series[kkk]=Low_[kkk];
}
}
break;
}
//----
case 11:
{
double Open_[],Low_[],High_[];
ArraySetAsSeries(Open_,true);
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyOpen (symbol, timeframe, start_pos, count, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
//----
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
{
if(series[kkk]>Open_[kkk]) series[kkk]=(High_[kkk]+series[kkk])/2.0;
else
{
if(series[kkk]<Open_[kkk])
series[kkk]=(Low_[kkk]+series[kkk])/2.0;
}
}
break;
}
//----
case 12:
{
double Open_[],Low_[],High_[];
ArraySetAsSeries(Open_,true);
ArraySetAsSeries(Low_,true);
ArraySetAsSeries(High_,true);
if(CopyClose(symbol, timeframe, start_pos, count, series) < 0) return(false);
if(CopyOpen (symbol, timeframe, start_pos, count, Open_ ) < 0) return(false);
if(CopyHigh (symbol, timeframe, start_pos, count, High_ ) < 0) return(false);
if(CopyLow (symbol, timeframe, start_pos, count, Low_ ) < 0) return(false);
//----
for(int kkk=start_pos; kkk<start_pos+count; kkk++)
{
double res=High_[kkk]+Low_[kkk]+series[kkk];
if(series[kkk]<Open_[kkk]) res=(res+Low_[kkk])/2;
if(series[kkk]>Open_[kkk]) res=(res+High_[kkk])/2;
if(series[kkk]==Open_[kkk]) res=(res+series[kkk])/2;
series[kkk]=((res-Low_[kkk])+(res-High_[kkk]))/2;
}
break;
}
//----
default: if(CopyClose(symbol,timeframe,start_pos,count,series)<0) return(false);
}
//----+
return(true);
}
//+------------------------------------------------------------------+
//| iPriceSeriesAlert() function |
//+------------------------------------------------------------------+
/*
* The function iPriceSeriesAlert() is intended for indicating an unacceptable
* value of the applied_price parameter passed to the iPriceSeries() function.
*/
void iPriceSeriesAlert(uchar applied_price)
{
if(applied_price<1)
Alert("The applied_price parameter must not be less than 1. You have specified incorrect value",
applied_price," value 1 will be used");
//----
if(applied_price>11)
Alert("The parameter applied_price must not exceed 11. You have specified incorrect value",
applied_price," value 1 will be used");
}
//+------------------------------------------------------------------+
//| Standard smoothing algorithms |
//+------------------------------------------------------------------+
double CMoving_Average::MASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of history in bars at previous tick
uint rates_total, // Amount of history in bars at the current tick
int Length, // Smoothing period
ENUM_MA_METHOD MA_Method, // Smoothing method (MODE_SMA, MODE_EMA, MODE_SMMA, MODE_LWMA)
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//----+
switch(MA_Method)
{
case MODE_SMA: return(SMASeries (begin, prev_calculated, rates_total, Length, series, bar, set));
case MODE_EMA: return(EMASeries (begin, prev_calculated, rates_total, Length, series, bar, set));
case MODE_SMMA: return(SMMASeries(begin, prev_calculated, rates_total, Length, series, bar, set));
case MODE_LWMA: return(LWMASeries(begin, prev_calculated, rates_total, Length, series, bar, set));
default:
{
if(bar==begin)
{
string word;
StringConcatenate(word,__FUNCTION__,"():",
" The parameter MA_Method must be within the range from MODE_SMA to MODE_LWMA.",
" You specified unacceptable value ",MA_Method," value MODE_SMA will be used!");
Print(word);
}
return(SMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
}
}
//----+
}
//+------------------------------------------------------------------+
//| Simple smoothing |
//+------------------------------------------------------------------+
double CMoving_Average::SMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int iii,kkk;
double sma;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length))
{
m_sum=0.0;
for(iii=1; iii<Length; iii++)
{
kkk=Recount_ArrayNumber(m_count,Length,iii);
m_sum+=m_SeriesArray[kkk];
}
}
else if(BarCheck3(begin,bar,set,Length)) return(EMPTY_VALUE);
//---- SMA calculation
m_sum+=series;
sma = m_sum / Length;
kkk = Recount_ArrayNumber(m_count, Length, Length - 1);
m_sum-=m_SeriesArray[kkk];
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_SUM=m_sum;
}
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_sum=m_SUM;
}
//----+
return(sma);
}
//+------------------------------------------------------------------+
//| Exponential smoothing |
//+------------------------------------------------------------------+
double CMoving_Average::EMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
double ema;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- initialization of zero
if(bar==begin)
{
m_Pr=2.0/(Length+1.0);
m_Moving=series;
}
//---- calculation of EMA
m_Moving=series*m_Pr+m_Moving *(1-m_Pr);
ema=m_Moving;
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_MOVING=m_Moving;
}
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_Moving=m_MOVING;
}
//----+
return(ema);
}
//+------------------------------------------------------------------+
//| Smoothed averaging |
//+------------------------------------------------------------------+
double CMoving_Average::SMMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int iii;
double smma;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length))
{
m_sum=0.0;
for(iii=0; iii<Length; iii++)
m_sum+=m_SeriesArray[iii];
m_Moving=(m_sum-series)/(Length-1);
}
else if(BarCheck3(begin,bar,set,Length)) return(EMPTY_VALUE);
//---- calculation of SMMA
m_sum=m_Moving *(Length-1)+series;
m_Moving=m_sum/Length;
smma=m_Moving;
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_SUM=m_sum;
m_MOVING=m_Moving;
}
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_sum=m_SUM;
m_Moving=m_MOVING;
}
//----+
return(smma);
}
//+------------------------------------------------------------------+
//| Linear weighted smoothing |
//+------------------------------------------------------------------+
double CMoving_Average::LWMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
double lwma;
int iii,kkk,Length_=Length+1;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length_,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length_))
{
m_sum=0.0;
m_lsum=0.0;
m_weight=0;
int rrr=Length;
for(iii=1; iii<=Length; iii++,rrr--)
{
kkk=Recount_ArrayNumber(m_count,Length_,iii);
m_sum+=m_SeriesArray[kkk]*rrr;
m_lsum+=m_SeriesArray[kkk];
m_weight+=iii;
}
}
else if(BarCheck3(begin,bar,set,Length_)) return(EMPTY_VALUE);
//---- calculation of LWMA
m_sum+=series*Length-m_lsum;
kkk=Recount_ArrayNumber(m_count,Length_,Length);
m_lsum+=series-m_SeriesArray[kkk];
lwma=m_sum/m_weight;
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_SUM = m_sum;
m_LSUM = m_lsum;
}
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_sum=m_SUM;
m_lsum=m_LSUM;
}
//----+
return(lwma);
}
//+------------------------------------------------------------------+
//| Calculation of the standard deviation |
//+------------------------------------------------------------------+
double CStdDeviation::StdDevSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double deviation, // Deviation
double series, // Value of the price series calculated for the bar with the 'bar' index
double MovSeries, // Value of the average, on which basis the StdDeviation is calculated
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int iii,kkk;
double StdDev,m_SumX2;
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length))
{
m_Sum=0.0;
m_Sum2=0.0;
for(iii=1; iii<Length; iii++)
{
kkk=Recount_ArrayNumber(m_count,Length,iii);
m_Sum+=m_SeriesArray[kkk];
m_Sum2+=MathPow(m_SeriesArray[kkk],2);
}
}
else if(BarCheck3(begin,bar,set,Length)) return(EMPTY_VALUE);
//---- calculation of StdDev
m_Sum+=series;
m_Sum2 += MathPow(series, 2);
m_SumX2 = Length * MathPow(MovSeries, 2) - 2 * MovSeries * m_Sum + m_Sum2;
kkk=Recount_ArrayNumber(m_count,Length,Length-1);
m_Sum2-=MathPow(m_SeriesArray[kkk],2);
m_Sum -=m_SeriesArray[kkk];
StdDev=deviation*MathSqrt(m_SumX2/Length);
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_Sum=m_SUM;
m_Sum2=m_SUM2;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_SUM=m_Sum;
m_SUM2=m_Sum2;
}
//----+
return(StdDev);
}
//+------------------------------------------------------------------+
//| JMA smoothing |
//+------------------------------------------------------------------+
double CJJMA::JJMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of history in bars at the current tick
int Din, // permission to change the Length and Phase parameters at every bar.
// 0 - prohibition to change the parameters, any other value means permission.
double Phase, // Parameter that can change withing the range -100 ... +100. It impacts the quality of the intermediate process of smoothing
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- initialization of coefficients
JJMAInit(begin,Din,Phase,Length,series,bar);
//---- declaration of local variables
int posA,posB,back;
int shift2,shift1,numb;
//----
double Res,ResPow;
double dser3,dser4,jjma;
double ratio,Extr,ser0,resalt;
double newvel,dSupr,Pow1,hoop1,SmVel;
double Pow2,Pow2x2,Suprem1,Suprem2;
double dser1,dser2,extent=0,factor;
//----+
if(m_Loop1<61)
{
m_Loop1++;
m_array[m_Loop1]=series;
}
//---- The JMASeries() function calculation
if(m_Loop1>30)
{
if(!m_start)
{
m_start= true;
shift1 = 1;
back=29;
//----
m_ser2 = m_array[1];
m_ser1 = m_ser2;
}
else back=0;
//-S-S-S-S-+
for(int rrr=back; rrr>=0; rrr--)
{
if(rrr==0)
ser0=series;
else ser0=m_array[31-rrr];
//----
dser1 = ser0 - m_ser1;
dser2 = ser0 - m_ser2;
//----
if(MathAbs(dser1)>MathAbs(dser2))
m_var2=MathAbs(dser1);
else m_var2=MathAbs(dser2);
//----
Res=m_var2;
newvel=Res+0.0000000001;
if(m_count1<=1)
m_count1=127;
else m_count1--;
//----
if(m_count2<=1)
m_count2=10;
else m_count2--;
//----
if(m_count3<128) m_count3++;
//----
m_Sum1+=newvel-m_hoop2[m_count2];
//----
m_hoop2[m_count2]=newvel;
m_bhoop2[m_count2]=true;
//----
if(m_count3>10)
SmVel=m_Sum1/10.0;
else SmVel=m_Sum1/m_count3;
//----
if(m_count3>127)
{
hoop1=m_hoop1[m_count1];
m_hoop1[m_count1]=SmVel;
m_bhoop1[m_count1]=true;
numb = 64;
posB = numb;
//----
while(numb>1)
{
if(m_data[posB]<hoop1)
{
numb /= 2.0;
posB += numb;
}
else
if(m_data[posB]<=hoop1) numb=1;
else
{
numb /= 2.0;
posB -= numb;
}
}
}
else
{
m_hoop1[m_count1]=SmVel;
m_bhoop1[m_count1]=true;
//----
if(m_midd1+m_midd2>127)
{
m_midd2--;
posB=m_midd2;
}
else
{
m_midd1++;
posB=m_midd1;
}
//----
if(m_midd1>96)
m_pos2=96;
else m_pos2=m_midd1;
//----
if(m_midd2<32)
m_pos1=32;
else m_pos1=m_midd2;
}
//----
numb = 64;
posA = numb;
//----
while(numb>1)
{
if(m_data[posA]>=SmVel)
{
if(m_data[posA-1]<=SmVel) numb=1;
else
{
numb /= 2.0;
posA -= numb;
}
}
else
{
numb /= 2.0;
posA += numb;
}
//----
if(posA==127)
if(SmVel>m_data[127]) posA=128;
}
//----
if(m_count3>127)
{
if(posB>=posA)
{
if(m_pos2+1>posA)
if(m_pos1-1<posA) m_Sum2+=SmVel;
//----
else if(m_pos1+0>posA)
if(m_pos1-1<posB)
m_Sum2+=m_data[m_pos1-1];
}
else
if(m_pos1>=posA)
{
if(m_pos2+1<posA)
if(m_pos2+1>posB)
m_Sum2+=m_data[m_pos2+1];
}
else if(m_pos2+2>posA) m_Sum2+=SmVel;
//----
else if(m_pos2+1<posA)
if(m_pos2+1>posB)
m_Sum2+=m_data[m_pos2+1];
//----
if(posB>posA)
{
if(m_pos1-1<posB)
if(m_pos2+1>posB)
m_Sum2-=m_data[posB];
//----
else if(m_pos2<posB)
if(m_pos2+1>posA)
m_Sum2-=m_data[m_pos2];
}
else
{
if(m_pos2+1>posB && m_pos1-1<posB)
m_Sum2-=m_data[posB];
//----
else if(m_pos1+0>posB)
if(m_pos1-0<posA)
m_Sum2-=m_data[m_pos1];
}
}
//----
if(posB<=posA)
{
if(posB==posA)
{
m_data[posA]=SmVel;
m_bdata[posA]=true;
}
else
{
for(numb=posB+1; numb<=posA-1; numb++)
{
m_data[numb-1]=m_data[numb];
m_bdata[numb-1]=true;
}
//----
m_data[posA-1]=SmVel;
m_bdata[posA-1]=true;
}
}
else
{
for(numb=posB-1; numb>=posA; numb--)
{
m_data[numb+1]=m_data[numb];
m_bdata[numb+1]=true;
}
//----
m_data[posA]=SmVel;
m_bdata[posA]=true;
}
//----
if(m_count3<=127)
{
m_Sum2=0;
for(numb=m_pos1; numb<=m_pos2; numb++)
m_Sum2+=m_data[numb];
}
//----
resalt=m_Sum2/(m_pos2-m_pos1+1.0);
//----
if(m_Loop2>30)
m_Loop2=31;
else m_Loop2++;
//----
if(m_Loop2<=30)
{
if(dser1>0.0)
m_ser1=ser0;
else m_ser1=ser0-dser1*m_Kct;
//----
if(dser2<0.0)
m_ser2=ser0;
else m_ser2=ser0-dser2*m_Kct;
//----
m_JMA=series;
//----
if(m_Loop2!=30) continue;
else
{
m_storage1=series;
if(MathCeil(m_Krx)>=1)
dSupr=MathCeil(m_Krx);
else dSupr=1.0;
//----
if(dSupr>0) Suprem2=MathFloor(dSupr);
else
{
if(dSupr<0)
Suprem2=MathCeil(dSupr);
else Suprem2=0.0;
}
//----
if(MathFloor(m_Krx)>=1)
m_var2=MathFloor(m_Krx);
else m_var2=1.0;
//----
if(m_var2>0) Suprem1=MathFloor(m_var2);
else
{
if(m_var2<0)
Suprem1=MathCeil(m_var2);
else Suprem1=0.0;
}
//----
if(Suprem2==Suprem1) factor=1.0;
else
{
dSupr=Suprem2-Suprem1;
factor=(m_Krx-Suprem1)/dSupr;
}
//----
if(Suprem1<=29)
shift1=(int)Suprem1;
else shift1=29;
//----
if(Suprem2<=29)
shift2=(int)Suprem2;
else shift2=29;
dser3 = series - m_array[m_Loop1 - shift1];
dser4 = series - m_array[m_Loop1 - shift2];
//----
m_djma=dser3 *(1.0-factor)/Suprem1+dser4*factor/Suprem2;
}
}
else
{
if(resalt) ResPow=MathPow(Res/resalt,m_degree);
else ResPow=0.0;
//----
if(m_Kfd>=ResPow)
m_var1= ResPow;
else m_var1=m_Kfd;
//----
if(m_var1<1.0)m_var2=1.0;
else
{
if(m_Kfd>=ResPow)
m_sense=ResPow;
else m_sense=m_Kfd;
m_var2=m_sense;
}
//----
extent=m_var2;
Pow1=MathPow(m_Kct,MathSqrt(extent));
//----
if(dser1>0.0)
m_ser1=ser0;
else m_ser1=ser0-dser1*Pow1;
//----
if(dser2<0.0)
m_ser2=ser0;
else m_ser2=ser0-dser2*Pow1;
}
}
//----
if(m_Loop2>30)
{
Pow2=MathPow(m_Krj,extent);
//----
m_storage1 *= Pow2;
m_storage1 += (1.0 - Pow2) * series;
m_storage2 *= m_Krj;
m_storage2 += (series - m_storage1) * (1.0 - m_Krj);
//----
Extr=m_Phase*m_storage2+m_storage1;
//----
Pow2x2= Pow2 * Pow2;
ratio = Pow2x2-2.0 * Pow2+1.0;
m_djma *= Pow2x2;
m_djma += (Extr - m_JMA) * ratio;
//----
m_JMA+=m_djma;
}
}
//-x-x-x-x-x-x-x-+
if(m_Loop1<=30) return(EMPTY_VALUE);
jjma=m_JMA;
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
//---- restoring modified cells of arrays from memory
for(numb = 0; numb < 128; numb++) if(m_bhoop1[numb]) m_hoop1[numb] = m_hoop1_[numb];
for(numb = 0; numb < 11; numb++) if(m_bhoop2[numb]) m_hoop2[numb] = m_hoop2_[numb];
for(numb = 0; numb < 128; numb++) if(m_bdata [numb]) m_data [numb] = m_data_ [numb];
//---- zeroing indexes of modified cells of arrays
ArrayInitialize(m_bhoop1,false);
ArrayInitialize(m_bhoop2,false);
ArrayInitialize(m_bdata,false);
//---- writing values of variables from the memory
m_JMA=m_JMA_;
m_djma = m_djma_;
m_ser1 = m_ser1_;
m_ser2 = m_ser2_;
m_Sum2 = m_Sum2_;
m_pos1 = m_pos1_;
m_pos2 = m_pos2_;
m_Sum1 = m_Sum1_;
m_Loop1 = m_Loop1_;
m_Loop2 = m_Loop2_;
m_count1 = m_count1_;
m_count2 = m_count2_;
m_count3 = m_count3_;
m_storage1 = m_storage1_;
m_storage2 = m_storage2_;
m_midd1 = m_midd1_;
m_midd2 = m_midd2_;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
//---- writing modified cells of arrays to the memory
for(numb = 0; numb < 128; numb++) if(m_bhoop1[numb]) m_hoop1_[numb] = m_hoop1[numb];
for(numb = 0; numb < 11; numb++) if(m_bhoop2[numb]) m_hoop2_[numb] = m_hoop2[numb];
for(numb = 0; numb < 128; numb++) if(m_bdata [numb]) m_data_ [numb] = m_data [numb];
//---- zeroing indexes of modified cells of arrays
ArrayInitialize(m_bhoop1,false);
ArrayInitialize(m_bhoop2,false);
ArrayInitialize(m_bdata,false);
//---- writing values of variables to the memory
m_JMA_=m_JMA;
m_djma_ = m_djma;
m_Sum2_ = m_Sum2;
m_ser1_ = m_ser1;
m_ser2_ = m_ser2;
m_pos1_ = m_pos1;
m_pos2_ = m_pos2;
m_Sum1_ = m_Sum1;
m_Loop1_ = m_Loop1;
m_Loop2_ = m_Loop2;
m_count1_ = m_count1;
m_count2_ = m_count2;
m_count3_ = m_count3;
m_storage1_ = m_storage1;
m_storage2_ = m_storage2;
m_midd1_ = m_midd1;
m_midd2_ = m_midd2;
}
//---- End of calculations of the JMASeries() function
return(jjma);
}
//+------------------------------------------------------------------+
//| Initialization of variables of the JMA algorithm |
//+------------------------------------------------------------------+
void CJJMA::JJMAInit(uint begin,
int Din,
double Phase,
double Length,
double series,
uint bar)
{
//---- calculation of coefficients
if(bar==begin || Din!=0)
{
if(bar==begin)
{
m_midd1 = 63;
m_midd2 = 64;
m_start = false;
//----
for(int numb = 0; numb <= m_midd1; numb++) m_data[numb] = -1000000.0;
for(int numb = m_midd2; numb <= 127; numb++) m_data[numb] = +1000000.0;
//---- all cells of arrays must be overwritten
ArrayInitialize(m_bhoop1,true);
ArrayInitialize(m_bhoop2,true);
ArrayInitialize(m_bdata,true);
//---- deleting trash from arrays at repeated initializations
ArrayInitialize(m_hoop1_, 0.0);
ArrayInitialize(m_hoop2_, 0.0);
ArrayInitialize(m_hoop1, 0.0);
ArrayInitialize(m_hoop2, 0.0);
ArrayInitialize(m_array, 0.0);
//----
m_djma = 0.0;
m_Sum1 = 0.0;
m_Sum2 = 0.0;
m_ser1 = 0.0;
m_ser2 = 0.0;
m_pos1 = 0.0;
m_pos2 = 0.0;
m_Loop1 = 0.0;
m_Loop2 = 0.0;
m_count1 = 0.0;
m_count2 = 0.0;
m_count3 = 0.0;
m_storage1 = 0.0;
m_storage2 = 0.0;
m_JMA=series;
}
if(Phase>=-100 && Phase<=100)
m_Phase=Phase/100.0+1.5;
//----
if(Phase > +100) m_Phase = 2.5;
if(Phase < -100) m_Phase = 0.5;
//----
double velA,velB,velC,velD;
//----
if(Length>=1.0000000002)
velA=(Length-1.0)/2.0;
else velA=0.0000000001;
//----
velA *= 0.9;
m_Krj = velA / (velA + 2.0);
velC = MathSqrt(velA);
velD = MathLog(velC);
m_var1= velD;
m_var2= m_var1;
//----
velB=MathLog(2.0);
m_sense=(m_var2/velB)+2.0;
if(m_sense<0.0) m_sense=0.0;
m_Kfd=m_sense;
//----
if(m_Kfd>=2.5)
m_degree=m_Kfd-2.0;
else m_degree=0.5;
//----
m_Krx = velC * m_Kfd;
m_Kct = m_Krx / (m_Krx + 1.0);
}
//----+
}
//+------------------------------------------------------------------+
//| Checking the depth of the Length smoothing for correctness |
//+------------------------------------------------------------------+
void CJJMA::JJMALengthCheck(string LengthName,int ExternLength)
{
//---- writing messages about unacceptable values of input parameters
if(ExternLength<1)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",LengthName,
" must be no less than 1. You have specified incorrect value",
ExternLength," value 1 will be used");
Print(word);
return;
}
//----+
}
//+------------------------------------------------------------------+
//| Checking the correctness of the Phase parameter of smoothing |
//+------------------------------------------------------------------+
void CJJMA::JJMAPhaseCheck(string PhaseName,int ExternPhase)
{
//---- writing messages about unacceptable values of input parameters
if(ExternPhase<-100)
{
string word;
StringConcatenate
(word,__FUNCTION__," (): Parameter ",PhaseName,
" must be no less than -100. You have specified incorrect value",
ExternPhase," value -100 will be used");
Print(word);
return;
}
//----
if(ExternPhase>+100)
{
string word;
StringConcatenate
(word,__FUNCTION__," (): Parameter ",PhaseName,
" must not exceed +100. You have specified incorrect value",
ExternPhase," value +100 will be used");
Print(word);
return;
}
//----+
}
//+------------------------------------------------------------------+
//| T3 smoothing |
//+------------------------------------------------------------------+
double CT3::T3Series(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Din, // permission to change the Length parameter at every bar.
// 0 - prohibition to change the parameters, any other value means permission.
double Curvature, // Coefficient (its value is increased 100 times for convenience!)
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
double e0,T3_;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- calculation of coefficients
T3Init(begin,Din,Curvature,Length,series,bar);
e0=series;
//---- <<< calculation of T3 >>>
m_e1 = m_w1 * e0 + m_w2 * m_e1;
m_e2 = m_w1 * m_e1 + m_w2 * m_e2;
m_e3 = m_w1 * m_e2 + m_w2 * m_e3;
m_e4 = m_w1 * m_e3 + m_w2 * m_e4;
m_e5 = m_w1 * m_e4 + m_w2 * m_e5;
m_e6 = m_w1 * m_e5 + m_w2 * m_e6;
//----
T3_=m_c1*m_e6+m_c2*m_e5+m_c3*m_e4+m_c4*m_e3;
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_e1 = m_E1;
m_e2 = m_E2;
m_e3 = m_E3;
m_e4 = m_E4;
m_e5 = m_E5;
m_e6 = m_E6;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_E1 = m_e1;
m_E2 = m_e2;
m_E3 = m_e3;
m_E4 = m_e4;
m_E5 = m_e5;
m_E6 = m_e6;
}
//---- End of calculation of value of the T3Series() function
return(T3_);
}
//+------------------------------------------------------------------+
//| Initialization of variables of the T3 algorithm |
//+------------------------------------------------------------------+
void CT3::T3Init(uint begin,
int Din,
double Curvature,
double Length,
double series,
uint bar)
{
//---- <<< Calculation of coefficients >>>
if(bar==begin || Din!=0)
{
double b=Curvature/100.0;
m_b2 = b * b;
m_b3 = m_b2 * b;
m_c1 = -m_b3;
m_c2 = (3 * (m_b2 + m_b3));
m_c3 = -3 * (2 * m_b2 + b + m_b3);
m_c4 = (1 + 3 * b + m_b3 + 3 * m_b2);
double n=1+0.5 *(Length-1);
m_w1 = 2 / (n + 1);
m_w2 = 1 - m_w1;
if(bar==begin)
{
m_e1 = series;
m_e2 = series;
m_e3 = series;
m_e4 = series;
m_e5 = series;
m_e6 = series;
}
}
//----+
}
//+------------------------------------------------------------------+
//| Ultralinear smoothing |
//+------------------------------------------------------------------+
double CJurX::JurXSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Din, // permission to change the parameter Length at every bar.
// 0 - prohibition to change the parameters, any other values means permission.
double Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
double V1,V2,JurX_;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- initialization of coefficients
JurXInit(begin,Din,Length,series,bar);
//---- calculation of JurX
m_f1 = m_Hg * m_f1 + m_Kg * series;
m_f2 = m_Kg * m_f1 + m_Hg * m_f2;
V1 = m_AC * m_f1 - m_AB * m_f2;
m_f3 = m_Hg * m_f3 + m_Kg * V1;
m_f4 = m_Kg * m_f3 + m_Hg * m_f4;
V2 = m_AC * m_f3 - m_AB * m_f4;
m_f5 = m_Hg * m_f5 + m_Kg * V2;
m_f6 = m_Kg * m_f5 + m_Hg * m_f6;
JurX_ = m_AC * m_f5 - m_AB * m_f6;
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_f1 = m_F1;
m_f2 = m_F2;
m_f3 = m_F3;
m_f4 = m_F4;
m_f5 = m_F5;
m_f6 = m_F6;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_F1 = m_f1;
m_F2 = m_f2;
m_F3 = m_f3;
m_F4 = m_f4;
m_F5 = m_f5;
m_F6 = m_f6;
}
//---- end of calculation of value of the JurX.Series function
return(JurX_);
}
//+------------------------------------------------------------------+
//| Initialization of variables of the JurX algorithm |
//+------------------------------------------------------------------+
void CJurX::JurXInit(uint begin,
int Din,
double Length,
double series,
uint bar
)
{
//----+
if(bar==begin || Din!=0)
{
if(Length>=6)
m_w=Length-1;
else m_w=5;
m_Kg = 3 / (Length + 2.0);
m_Hg = 1.0 - m_Kg;
//----
if(bar==begin)
{
m_f1 = series;
m_f2 = series;
m_f3 = series;
m_f4 = series;
m_f5 = series;
m_f6 = series;
m_AB = 0.5;
m_AC = 1.5;
}
}
//----+
}
//+------------------------------------------------------------------+
//| Parabolic smoothing |
//+------------------------------------------------------------------+
double CParMA::ParMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- Checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- Declaration of local variables
int iii,kkk;
//----
double S,B0,B1,B2,parma;
double A,B,C,D,E,F;
double K,L,M,P,Q,R;
double sum_y,sum_xy,sum_x2y,var_tmp;
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length)) ParMAInit(Length);
else if(BarCheck3(begin,bar,set,Length)) return(EMPTY_VALUE);
//---- ParMA calculation
sum_y = 0.0;
sum_xy = 0.0;
sum_x2y = 0.0;
//----
for(iii=1; iii<=Length; iii++)
{
kkk=Recount_ArrayNumber(m_count,Length,Length-iii);
var_tmp = m_SeriesArray[kkk];
sum_y += var_tmp;
sum_xy += iii * var_tmp;
sum_x2y += iii * iii * var_tmp;
}
// the difference between two adjacent bars for sum_x2y: Sum(i=0; i<Length){(2*Length* - 1)*Series[i] + 2*i*Series[i]}
// initialization
A = Length;
B = m_sum_x;
C = m_sum_x2;
F = m_sum_x3;
M = m_sum_x4;
P = sum_y;
R = sum_xy;
S = sum_x2y;
// intermediates
D = B;
E = C;
K = C;
L = F;
Q = D / A;
E = E - Q * B;
F = F - Q * C;
R = R - Q * P;
Q = K / A;
L = L - Q * B;
M = M - Q * C;
S = S - Q * P;
Q = L / E;
// calculate regression coefficients
B2 = (S - R * Q) / (M - F * Q);
B1 = (R - F * B2) / E;
B0 = (P - B * B1 - C * B2) / A;
// value to be returned - parabolic MA
parma=B0+(B1+B2*A)*A;
//----+
return(parma);
}
//+-----------------------------------------------------------------------+
//| Initialization of variables of the algorithm of parabolic smoothing |
//+-----------------------------------------------------------------------+
void CParMA::ParMAInit(double Length)
{
//----+
int var_tmp;
m_sum_x=0;
m_sum_x2 = 0;
m_sum_x3 = 0;
m_sum_x4 = 0;
for(int iii=1; iii<=Length; iii++)
{
var_tmp=iii;
m_sum_x+=var_tmp;
var_tmp *= iii;
m_sum_x2+= var_tmp;
var_tmp *= iii;
m_sum_x3+= var_tmp;
var_tmp *= iii;
m_sum_x4+= var_tmp;
}
//----+
}
//+------------------------------------------------------------------+
//| CMOSeries() function |
//+------------------------------------------------------------------+
double CCMO::CMOSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int CMO_Length, // CMO period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables;
double dseries,abcmo;
int iii,rrr,size=CMO_Length+1;
//---- changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,size,m_dSeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- checking the CMO_Length external parameter for correctness
LengthCheck(CMO_Length);
//---- checking whether there are enough bars
if(BarCheck1(begin+1,bar,set)) return(EMPTY_VALUE);
//---- rearrangement of cells of the SeriesArray array
Recount_ArrayZeroPos(m_count,size,prev_calculated,rates_total,series-m_series1,bar,m_dSeriesArray,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,CMO_Length+3))
{
m_UpSum = 0.0;
m_DnSum = 0.0;
for(iii=1; iii<CMO_Length; iii++)
{
rrr=Recount_ArrayNumber(m_count,size,iii);
dseries=m_dSeriesArray[rrr];
if(dseries > 0) m_UpSum += dseries;
if(dseries < 0) m_DnSum -= dseries;
}
m_AbsCMO=0.000000001;
}
else if(BarCheck3(begin,bar,set,CMO_Length+3))
{
m_series1=series;
return(EMPTY_VALUE);
}
dseries=m_dSeriesArray[m_count];
if(dseries > 0) m_UpSum += dseries;
if(dseries < 0) m_DnSum -= dseries;
if(m_UpSum+m_DnSum>0)
m_AbsCMO=MathAbs((m_UpSum-m_DnSum)/(m_UpSum+m_DnSum));
abcmo=m_AbsCMO;
//----
rrr=Recount_ArrayNumber(m_count,size,CMO_Length-1);
dseries=m_dSeriesArray[rrr];
if(dseries > 0) m_UpSum -= dseries;
if(dseries < 0) m_DnSum += dseries;
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_AbsCMO= m_AbsCMO_;
m_UpSum = m_UpSum_;
m_DnSum = m_DnSum_;
m_series1=m_series1_;
}
else m_series1=series;
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_AbsCMO_=m_AbsCMO;
m_UpSum_ = m_UpSum;
m_DnSum_ = m_DnSum;
m_series1_=m_series1;
}
//----+
return(abcmo);
}
//+------------------------------------------------------------------+
//| VIDYASeries() function |
//+------------------------------------------------------------------+
double CCMO::VIDYASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int CMO_Length, // CMO period
double EMA_Length, // EMA period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- declaration of local variables
double vidya,CMO_=CMOSeries(begin,prev_calculated,rates_total,CMO_Length,series,bar,set);
//---- initialization of zero
if(BarCheck2(begin,bar,set,CMO_Length+3))
{
m_Vidya=series;
//---- Initialization of the EMA smoothing factor
m_SmoothFactor=2.0/(EMA_Length+1.0);
}
else if(BarCheck3(begin,bar,set,CMO_Length+3)) return(EMPTY_VALUE);
//----
CMO_*=m_SmoothFactor;
m_Vidya=CMO_*series+(1-CMO_)*m_Vidya;
vidya=m_Vidya;
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_Vidya=m_Vidya_;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_Vidya_=m_Vidya;
}
//----+
return(vidya);
}
//+------------------------------------------------------------------+
//| Kaufman's smoothing |
//+------------------------------------------------------------------+
double CAMA::AMASeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of history in bars at the current tick
int Length, // AMA period
int Fast_Length, // period of the fast moving average
int Slow_Length, // period of the slow moving average
double Rate, // rate of the smoothing constant
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
double signal,ER,ERSC,SSC,dprice,ama;
int iii,kkk,rrr,size=Length+1;
//----+ Èçìåíåíèå ðàçìåðîâ ìàññèâîâ ïåðåìåííûõ
if(bar==begin)
if(!SeriesArrayResize(__FUNCTION__,size,m_SeriesArray,m_Size_1)
|| !SeriesArrayResize(__FUNCTION__,size,m_dSeriesArray,m_Size_2))
return(EMPTY_VALUE);
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,size,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- checking whether there are enough bars
if(BarCheck1(begin+1,bar,set)) return(EMPTY_VALUE);
kkk=Recount_ArrayNumber(m_count,size,1);
dprice=series-m_SeriesArray[kkk];
m_dSeriesArray[m_count]=dprice;
//---- initialization of zero
if(BarCheck2(begin,bar,set,Length+3))
{
//---- initialization of constants
rrr=Recount_ArrayNumber(m_count,size,1);
m_Ama=m_SeriesArray[rrr];
m_slowSC = (2.0 / (Slow_Length + 1));
m_fastSC = (2.0 / (Fast_Length + 1));
m_dSC=m_fastSC-m_slowSC;
m_noise=0.000000001;
for(iii=1; iii<Length; iii++)
{
rrr=Recount_ArrayNumber(m_count,size,iii);
m_noise+=MathAbs(m_dSeriesArray[rrr]);
}
}
else if(BarCheck3(begin,bar,set,Length+3)) return(EMPTY_VALUE);
//----
m_noise+=MathAbs(dprice);
rrr=Recount_ArrayNumber(m_count,size,Length);
signal=MathAbs(series-m_SeriesArray[rrr]);
//----
ER=signal/m_noise;
ERSC= ER * m_dSC;
SSC = ERSC+m_slowSC;
m_Ama=m_Ama+(MathPow(SSC,Rate) *(series-m_Ama));
ama = m_Ama;
kkk = Recount_ArrayNumber( m_count, size, Length - 1);
m_noise-=MathAbs(m_dSeriesArray[kkk]);
//---- restoring the values of the variables
if(BarCheck5(rates_total,bar,set))
{
m_noise=m_NOISE;
m_Ama=m_AMA_;
}
//---- saving the values of the variables
if(BarCheck4(rates_total,bar,set))
{
m_AMA_=m_Ama;
m_NOISE=m_noise;
}
//----+
return(ama);
}
//+------------------------------------------------------------------+
//| Price changing rate |
//+------------------------------------------------------------------+
double CMomentum::MomentumSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int kkk,Length_=Length+1;
double Momentum;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- Changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length_,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,Length_)) return(EMPTY_VALUE);
//---- calculation of price changing rate
kkk=Recount_ArrayNumber(m_count,Length_,Length);
Momentum=series-m_SeriesArray[kkk];
//----+
return(Momentum);
}
//+------------------------------------------------------------------+
//| Normalized price changing rate |
//+------------------------------------------------------------------+
double CnMomentum::nMomentumSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking the beginning of bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int kkk,Length_=Length+1;
double nMomentum;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length_,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,Length_)) return(EMPTY_VALUE);
//---- calculation of price changing rate
kkk=Recount_ArrayNumber(m_count,Length_,Length);
nMomentum=(series-m_SeriesArray[kkk])/m_SeriesArray[kkk];
//----+
return(nMomentum);
}
//+------------------------------------------------------------------+
//| Price changing rate |
//+------------------------------------------------------------------+
double CROC::ROCSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
int Length, // Smoothing period
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Arrays indexing direction
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- declaration of local variables
int kkk,Length_=Length+1;
double ROC;
//---- checking the Length external parameter for correctness
LengthCheck(Length);
//---- changing the variables array sizes
if(bar==begin && !SeriesArrayResize(__FUNCTION__,Length_,m_SeriesArray,m_Size_))
return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,Length_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,Length_)) return(EMPTY_VALUE);
//---- calculation of the prices changing rate
kkk = Recount_ArrayNumber(m_count, Length_, Length);
ROC = 100 * series / m_SeriesArray[kkk];
//----+
return(ROC);
}
//+------------------------------------------------------------------+
//| FATL smoothing |
//+------------------------------------------------------------------+
double CFATL::FATLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,m_Size_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,m_Size_)) return(EMPTY_VALUE);
//---- FATL calculation
double FATL=0.0;
if(BarCheck5(rates_total,bar,set))
{
if(prev_calculated!=rates_total)
{
m_FATL=0.0;
for(int iii=1; iii<m_Size_; iii++)
m_FATL+=m_FATLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
}
FATL=m_FATL+m_FATLTable[0]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,0)];
}
else for(int iii=0; iii<m_Size_; iii++)
FATL+=m_FATLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
//----+
return(FATL);
}
//+------------------------------------------------------------------+
//| The CFATL class constructor |
//+------------------------------------------------------------------+
CFATL::CFATL()
{
//----+
m_Size_=39;
//----
double FATLTable[]=
{
+0.4360409450, +0.3658689069, +0.2460452079, +0.1104506886, -0.0054034585, -0.0760367731,
-0.0933058722, -0.0670110374, -0.0190795053, +0.0259609206, +0.0502044896, +0.0477818607,
+0.0249252327, -0.0047706151, -0.0272432537, -0.0338917071, -0.0244141482, -0.0055774838,
+0.0128149838, +0.0226522218, +0.0208778257, +0.0100299086, -0.0036771622, -0.0136744850,
-0.0160483392, -0.0108597376, -0.0016060704, +0.0069480557, +0.0110573605, +0.0095711419,
+0.0040444064, -0.0023824623, -0.0067093714, -0.0072003400, -0.0047717710, +0.0005541115,
+0.0007860160, +0.0130129076, +0.0040364019
};
ArrayCopy(m_FATLTable,FATLTable,0,0,WHOLE_ARRAY);
//----+
}
//+------------------------------------------------------------------+
//| SATL smoothing |
//+------------------------------------------------------------------+
double CSATL::SATLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Arrays indexing direction
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,m_Size_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,m_Size_)) return(EMPTY_VALUE);
//---- FATL calculation
double SATL=0.0;
if(BarCheck5(rates_total,bar,set))
{
if(prev_calculated!=rates_total)
{
m_SATL=0.0;
for(int iii=1; iii<m_Size_; iii++)
m_SATL+=m_SATLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
}
SATL=m_SATL+m_SATLTable[0]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,0)];
}
else for(int iii=0; iii<m_Size_; iii++)
SATL+=m_SATLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
//----+
return(SATL);
}
//+------------------------------------------------------------------+
//| The CSATL class constructor |
//+------------------------------------------------------------------+
CSATL::CSATL()
{
//----+
m_Size_=65;
//----
double SATLTable[]=
{
+0.0982862174,+0.0975682269,+0.0961401078,+0.0940230544,+0.0912437090,+0.0878391006,
+0.0838544303,+0.0793406350,+0.0743569346,+0.0689666682,+0.0632381578,+0.0572428925,
+0.0510534242,+0.0447468229,+0.0383959950,+0.0320735368,+0.0258537721,+0.0198005183,
+0.0139807863,+0.0084512448,+0.0032639979,-0.0015350359,-0.0059060082,-0.0098190256,
-0.0132507215,-0.0161875265,-0.0186164872,-0.0205446727,-0.0219739146,-0.0229204861,
-0.0234080863,-0.0234566315,-0.0231017777,-0.0223796900,-0.0213300463,-0.0199924534,
-0.0184126992,-0.0166377699,-0.0147139428,-0.0126796776,-0.0105938331,-0.0084736770,
-0.0063841850,-0.0043466731,-0.0023956944,-0.0005535180,+0.0011421469,+0.0026845693,
+0.0040471369,+0.0052380201,+0.0062194591,+0.0070340085,+0.0076266453,+0.0080376628,
+0.0083037666,+0.0083694798,+0.0082901022,+0.0080741359,+0.0077543820,+0.0073260526,
+0.0068163569,+0.0062325477,+0.0056078229,+0.0049516078,+0.0161380976
};
ArrayCopy(m_SATLTable,SATLTable,0,0,WHOLE_ARRAY);
//----+
}
//+------------------------------------------------------------------+
//| RFTL smoothing |
//+------------------------------------------------------------------+
double CRFTL::RFTLSeries(uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,m_Size_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,m_Size_)) return(EMPTY_VALUE);
//---- FATL calculation
double RFTL=0.0;
if(BarCheck5(rates_total,bar,set))
{
if(prev_calculated!=rates_total)
{
m_RFTL=0.0;
for(int iii=1; iii<m_Size_; iii++)
m_RFTL+=m_RFTLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
}
RFTL=m_RFTL+m_RFTLTable[0]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,0)];
}
else for(int iii=0; iii<m_Size_; iii++)
RFTL+=m_RFTLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
//----+
return(RFTL);
}
//+------------------------------------------------------------------+
//| The CRFTL class constructor |
//+------------------------------------------------------------------+
CRFTL::CRFTL()
{
//----+
m_Size_=44;
//----
double RFTLTable[]=
{
-0.0025097319, +0.0513007762, +0.1142800493, +0.1699342860, +0.2025269304,
+0.2025269304, +0.1699342860, +0.1142800493, +0.0513007762, -0.0025097319,
-0.0353166244, -0.0433375629, -0.0311244617, -0.0088618137, +0.0120580088,
+0.0233183633, +0.0221931304, +0.0115769653, -0.0022157966, -0.0126536111,
-0.0157416029, -0.0113395830, -0.0025905610, +0.0059521459, +0.0105212252,
+0.0096970755, +0.0046585685, -0.0017079230, -0.0063513565, -0.0074539350,
-0.0050439973, -0.0007459678, +0.0032271474, +0.0051357867, +0.0044454862,
+0.0018784961, -0.0011065767, -0.0031162862, -0.0033443253, -0.0022163335,
+0.0002573669, +0.0003650790, +0.0060440751, +0.0018747783
};
ArrayCopy(m_RFTLTable,RFTLTable,0,0,WHOLE_ARRAY);
//----+
}
//+------------------------------------------------------------------+
//| RSTL smoothing |
//+------------------------------------------------------------------+
double CRSTL::RSTLSeries(uint begin,// Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//---- checking of the beginning of the bars reliable calculation
if(BarCheck1(begin,bar,set)) return(EMPTY_VALUE);
//---- rearrangement and initialization of cells of the m_SeriesArray array
Recount_ArrayZeroPos(m_count,m_Size_,prev_calculated,rates_total,series,bar,m_SeriesArray,set);
//---- initialization of zero
if(BarCheck3(begin,bar,set,m_Size_)) return(EMPTY_VALUE);
//---- FATL calculation
double RSTL=0.0;
if(BarCheck5(rates_total,bar,set))
{
if(prev_calculated!=rates_total)
{
m_RSTL=0.0;
for(int iii=1; iii<m_Size_; iii++)
m_RSTL+=m_RSTLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
}
RSTL=m_RSTL+m_RSTLTable[0]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,0)];
}
else for(int iii=0; iii<m_Size_; iii++)
RSTL+=m_RSTLTable[iii]*m_SeriesArray[Recount_ArrayNumber(m_count,m_Size_,iii)];
//----+
return(RSTL);
}
//+------------------------------------------------------------------+
//| The CRSTL class constructor |
//+------------------------------------------------------------------+
CRSTL::CRSTL()
{
//----+
m_Size_=99;
//----
double RSTLTable[]=
{
-0.00514293,-0.00398417,-0.00262594,-0.00107121,+0.00066887,+0.00258172,+0.00465269,
+0.00686394,+0.00919334,+0.01161720,+0.01411056,+0.01664635,+0.01919533,+0.02172747,
+0.02421320,+0.02662203,+0.02892446,+0.03109071,+0.03309496,+0.03490921,+0.03651145,
+0.03788045,+0.03899804,+0.03984915,+0.04042329,+0.04071263,+0.04071263,+0.04042329,
+0.03984915,+0.03899804,+0.03788045,+0.03651145,+0.03490921,+0.03309496,+0.03109071,
+0.02892446,+0.02662203,+0.02421320,+0.02172747,+0.01919533,+0.01664635,+0.01411056,
+0.01161720,+0.00919334,+0.00686394,+0.00465269,+0.00258172,+0.00066887,-0.00107121,
-0.00262594,-0.00398417,-0.00514293,-0.00609634,-0.00684602,-0.00739452,-0.00774847,
-0.00791630,-0.00790940,-0.00774085,-0.00742482,-0.00697718,-0.00641613,-0.00576108,
-0.00502957,-0.00423873,-0.00340812,-0.00255923,-0.00170217,-0.00085902,-0.00004113,
+0.00073700,+0.00146422,+0.00213007,+0.00272649,+0.00324752,+0.00368922,+0.00405000,
+0.00433024,+0.00453068,+0.00465046,+0.00469058,+0.00466041,+0.00457855,+0.00442491,
+0.00423019,+0.00399201,+0.00372169,+0.00342736,+0.00311822,+0.00280309,+0.00249088,
+0.00219089,+0.00191283,+0.00166683,+0.00146419,+0.00131867,+0.00124645,+0.00126836,
-0.00401854
};
ArrayCopy(m_RSTLTable,RSTLTable,0,0,WHOLE_ARRAY);
//----+
}
//+----------------------------------------------------------------------------+
//| calculation of the minimum number of necessary bars of the XMA algorithm |
//+----------------------------------------------------------------------------+
int CXMA::GetStartBars(Smooth_Method Method,int Length,int Phase)
{
//----+
switch(Method)
{
case MODE_SMA_: return(Length);
case MODE_EMA_: return(0);
case MODE_SMMA_: return(Length+1);
case MODE_LWMA_: return(Length);
case MODE_JJMA: return(30);
case MODE_JurX: return(0);
case MODE_ParMA: return(Length);
case MODE_T3: return(0);
case MODE_VIDYA: return(Phase+2);
case MODE_AMA: return(Length+2);
}
//----+
return(0);
}
//+------------------------------------------------------------------+
//| Initialization of variables of the XMA algorithm |
//+------------------------------------------------------------------+
double CXMA::XMASeries (uint begin, // Bars reliable calculation beginning index
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
// 0 - prohibition to change the parameters, any other value means permission.
Smooth_Method Method,
int Phase, // Parameter that can change withing the range -100 ... +100 (for JJMA). It impacts the quality of the intermediate process of smoothing
int Length, // Smoothing depth
double series, // Value of the price series calculated for the bar with the 'bar' index
uint bar, // Bar index
bool set // Direction of arrays indexing
)
{
//----+
XMAInit(Method);
switch(Method)
{
case MODE_SMA_: return(SMA.SMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
case MODE_EMA_: return(EMA.EMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
case MODE_SMMA_: return(SMMA.SMMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
case MODE_LWMA_: return(LWMA.LWMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
case MODE_JJMA: return(JJMA.JJMASeries(begin,prev_calculated,rates_total,0,Phase,Length,series,bar,set));
case MODE_JurX: return(JurX.JurXSeries(begin,prev_calculated,rates_total,0,Length,series,bar,set));
case MODE_ParMA: return(ParMA.ParMASeries(begin,prev_calculated,rates_total,Length,series,bar,set));
case MODE_T3: return(T3.T3Series(begin,prev_calculated,rates_total,0,Phase,Length,series,bar,set));
case MODE_VIDYA: return(VIDYA.VIDYASeries(begin,prev_calculated,rates_total,Phase,Length,series,bar,set));
case MODE_AMA: return(AMA.AMASeries(begin,prev_calculated,rates_total,Length,2,Phase,2.0,series,bar,set));
}
//----+
return(0.0);
}
//+------------------------------------------------------------------+
//| Initialization of variables of the XMA algorithm |
//+------------------------------------------------------------------+
void CXMA::XMAInit(Smooth_Method Method)
{
//----+
if(m_init)return;
else
{
m_init=true;
m_Method=Method;
}
switch(Method)
{
case MODE_SMA_: SMA = new CMoving_Average; break;
case MODE_EMA_: EMA = new CMoving_Average; break;
case MODE_SMMA_: SMMA = new CMoving_Average; break;
case MODE_LWMA_: LWMA = new CMoving_Average; break;
case MODE_JJMA: JJMA = new CJJMA; break;
case MODE_JurX: JurX = new CJurX; break;
case MODE_ParMA: ParMA = new CParMA; break;
case MODE_T3: T3 = new CT3; break;
case MODE_VIDYA: VIDYA = new CCMO; break;
case MODE_AMA: AMA = new CAMA; break;
default: break;
}
//----+
}
//+------------------------------------------------------------------+
//| Deinitialization of the variables of the XMA algorithm |
//+------------------------------------------------------------------+
void CXMA::~CXMA()
{
//----+
switch(m_Method)
{
case MODE_SMA_: delete SMA; break;
case MODE_EMA_: delete EMA; break;
case MODE_SMMA_: delete SMMA; break;
case MODE_LWMA_: delete LWMA; break;
case MODE_JJMA: delete JJMA; break;
case MODE_JurX: delete JurX; break;
case MODE_ParMA: delete ParMA; break;
case MODE_T3: delete T3; break;
case MODE_VIDYA: delete VIDYA; break;
case MODE_AMA: delete AMA; break;
default: break;
}
//----+
}
//+------------------------------------------------------------------+
//| Get a name of the XMA smoothing algorithm as a string |
//+------------------------------------------------------------------+
string CXMA::GetString_MA_Method(Smooth_Method Method)
{
//----+
switch(Method)
{
case MODE_SMA_: return("SMA");
case MODE_EMA_: return("EMA");
case MODE_SMMA_: return("SMMA");
case MODE_LWMA_: return("LWMA");
case MODE_JJMA: return("JJMA");
case MODE_JurX: return("JurX");
case MODE_ParMA: return("ParMA");
case MODE_T3: return("T3");
case MODE_VIDYA: return(" VIDYA");
case MODE_AMA: return("AMA");
}
//----+
return("");
}
//+------------------------------------------------------------------+
//| Checking the correctness of the Phase parameter of smoothing |
//+------------------------------------------------------------------+
void CXMA::XMAPhaseCheck(string PhaseName,int ExternPhase,Smooth_Method Method)
{
//---- writing messages about unacceptable values of input parameters
switch(Method)
{
case MODE_SMA_: break;
case MODE_EMA_: break;
case MODE_SMMA_: break;
case MODE_LWMA_: break;
case MODE_JJMA:
//----
if(ExternPhase<-100)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",PhaseName,
" must be no less than -100. You have specified unacceptable value ",ExternPhase," -100 wull be used");
Print(word);
break;
}
//----
if(ExternPhase>+100)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",PhaseName,
" must not exceed +100. You have specified unacceptable value ",ExternPhase," +100 will be used");
Print(word);
break;;
}
break;
case MODE_JurX: break;
case MODE_ParMA: break;
case MODE_T3: break;
if(ExternPhase<1)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",PhaseName,
" must be no less than 1. You have specified unacceptable value ",ExternPhase," 1 will be used");
Print(word);
break;
}
case MODE_VIDYA:
if(ExternPhase<1)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",PhaseName,
" must be no less than 1. You have specified unacceptable value ",ExternPhase," 1 will be used");
Print(word);
break;
}
case MODE_AMA:
if(ExternPhase<1)
{
string word;
StringConcatenate(word,__FUNCTION__," (): Parameter ",PhaseName,
" must be no less than 1. You have specified unacceptable value ",ExternPhase," 1 will be used");
Print(word);
break;
}
}
//----+
}
//+------------------------------------------------------------------+
//| Checking the depth of the Length smoothing for correctness |
//+------------------------------------------------------------------+
void CXMA::XMALengthCheck(string LengthName,int ExternLength)
{
//---- writing messages about unacceptable values of input parameters
if(ExternLength<1)
{
string word;
StringConcatenate
(word,__FUNCTION__," (): Parameter ",LengthName,
" must be no less than 1. You have specified incorrect value",
ExternLength," value 1 will be used");
Print(word);
return;
}
//----+
}
//+------------------------------------------------------------------+
//| Checking correctness of the smoothing period |
//+------------------------------------------------------------------+
void CMovSeriesTools::MALengthCheck(string LengthName,int ExternLength)
{
//----+
if(ExternLength<1)
{
string word;
StringConcatenate
(word,__FUNCTION__," (): Parameter ",LengthName,
" must be no less than 1. You have specified incorrect value",
ExternLength," value 1 will be used");
Print(word);
return;
}
//----+
}
//+------------------------------------------------------------------+
//| Checking correctness of the smoothing period |
//+------------------------------------------------------------------+
void CMovSeriesTools::MALengthCheck(string LengthName,double ExternLength)
{
//----+
if(ExternLength<1)
{
string word;
StringConcatenate
(word,__FUNCTION__," (): Parameter ",LengthName,
" must be no less than 1. You have specified incorrect value",
ExternLength," value 1 will be used");
Print(word);
return;
}
//----+
}
//+------------------------------------------------------------------+
//| Checking if a bar is within the calculation range |
//+------------------------------------------------------------------+
bool CMovSeriesTools::BarCheck1(int begin,int bar,bool Set)
{
//----+
if((!Set && bar<begin) || (Set && bar>begin)) return(true);
//----+
return(false);
}
//+------------------------------------------------------------------+
//| Checking the bar for the calculation start |
//+------------------------------------------------------------------+
bool CMovSeriesTools::BarCheck2(int begin,int bar,bool Set,int Length)
{
//----+
if((!Set && bar==begin+Length-1) || (Set && bar==begin-Length+1))
return(true);
//----+
return(false);
}
//+------------------------------------------------------------------+
//| Checking the bar for absence of bars for smoothing |
//+------------------------------------------------------------------+
bool CMovSeriesTools::BarCheck3(int begin,int bar,bool Set,int Length)
{
//----+
if((!Set && bar<begin+Length-1) || (Set && bar>begin-Length+1))
return(true);
//----+
return(false);
}
//+------------------------------------------------------------------+
//| Checking the bar at the moment of the data saving |
//+------------------------------------------------------------------+
bool CMovSeriesTools::BarCheck4(int rates_total,int bar,bool Set)
{
//---- Saving the values of the variables
if((!Set && bar==rates_total-2) || (Set && bar==1)) return(true);
//----+
return(false);
}
//+------------------------------------------------------------------+
//| Checking the bar at the moment of the data restoring |
//+------------------------------------------------------------------+
bool CMovSeriesTools::BarCheck5(int rates_total,int bar,bool Set)
{
//---- Restoring the values of the variables
if((!Set && bar==rates_total-1) || (Set && bar==0)) return(true);
//----+
return(false);
}
//+------------------------------------------------------------------+
//| Changing incorrect smoothing period |
//+------------------------------------------------------------------+
void CMovSeriesTools::LengthCheck(int &ExternLength)
{
//----+
if(ExternLength<1) ExternLength=1;
//----+
}
//+------------------------------------------------------------------+
//| Changing incorrect smoothing period |
//+------------------------------------------------------------------+
void CMovSeriesTools::LengthCheck(double &ExternLength)
// LengthCheck(ExternLength)
{
//----+
if(ExternLength<1) ExternLength=1;
//----+
}
//+------------------------------------------------------------------+
//| Recalculation of position of a newest element in the array |
//+------------------------------------------------------------------+
void CMovSeriesTools::Recount_ArrayZeroPos(int &count,// Return the current value of the price series by the link
int Length,
uint prev_calculated, // Amount of bars in history at previous call
uint rates_total, // Amount of bars in history at the current tick
double series, // Value of the price series calculated for the bar with the 'bar' index
int bar,
double &Array[],
bool set // Direction of arrays indexing
)
{
//----+
if(set)
{
if(bar!=rates_total-prev_calculated)
{
count--;
if(count<0) count=Length-1;
}
}
else
{
if(bar!=prev_calculated-1)
{
count--;
if(count<0) count=Length-1;
}
}
Array[count]=series;
//----+
}
//+------------------------------------------------------------------+
//| Transformation of a timeseries number into an array position |
//+------------------------------------------------------------------+
int CMovSeriesTools::Recount_ArrayNumber(int count,// Number of the current value of the price series
int Length,
int Number // Position of the requested value relatively to the current bar 'bar'
)
{
//----+
int ArrNumber=Number+count;
if(ArrNumber>Length-1) ArrNumber-=Length;
//----+
return(ArrNumber);
}
//+------------------------------------------------------------------+
//| Changing the size of the Array[] array |
//+------------------------------------------------------------------+
bool CMovSeriesTools::SeriesArrayResize(string FunctionsName, // Name of the function, in which the size is changed
int Length, // Array new size
double &Array[], // Array that is changed
int &Size_ // New size of the array
)
{
//---- Changing the variables array sizes
if(Length>Size_)
{
int Size=Length+1;
if(ArrayResize(Array,Size)==-1)
{
ArrayResizeErrorPrint(FunctionsName,Size_);
return(false);
}
Size_=Size;
}
//----+
return(true);
}
//+------------------------------------------------------------------+
//| Writing the error of changing the array size into the log file |
//+------------------------------------------------------------------+
bool CMovSeriesTools::ArrayResizeErrorPrint(string FunctionsName,
int &Size_
)
{
//----+
string lable,word;
StringConcatenate(lable,FunctionsName,"():");
StringConcatenate(word,lable," Error!!! Failed to change",
" the size of the array of variables of the function ",FunctionsName,"()!");
Print(word);
//----
int error=GetLastError();
ResetLastError();
//----
if(error>4000)
{
StringConcatenate(word,lable,"(): Error code ",error);
Print(word);
}
Size_=-2;
return(false);
//----+
return(true);
}