2
Views
0
Downloads
0
Favorites
Momentum_AMA
/*
* Place the SmoothAlgorithms.mqh file
* to the terminal_data_folder\MQL5\Include
*/
//+------------------------------------------------------------------+
//| Momentum_AMA.mq5 |
//| Copyright © 2010, Nikolay Kositsin |
//| Khabarovsk, farria@mail.redcom.ru |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2010, Nikolay Kositsin"
#property link "farria@mail.redcom.ru"
//---- indicator version
#property version "1.00"
//---- drawing the indicator in a separate window
#property indicator_separate_window
//---- number of indicator buffers
#property indicator_buffers 1
//---- only one plot is used
#property indicator_plots 1
//+-----------------------------------+
//| Indicator drawing parameters |
//+-----------------------------------+
//---- drawing the indicator as a line
#property indicator_type1 DRAW_HISTOGRAM
//---- blue violet color is used as the color of the indicator line
#property indicator_color1 BlueViolet
//---- the indicator line is a continuous curve
#property indicator_style1 STYLE_SOLID
//---- indicator line width is equal to 1
#property indicator_width1 1
//---- displaying labels of the indicator
#property indicator_label1 "Momentum_AMA"
//+-----------------------------------+
//| Indicator input parameters |
//+-----------------------------------+
enum Applied_price_ // Type of constant
{
PRICE_CLOSE_ = 1, // Close
PRICE_OPEN_, // Open
PRICE_HIGH_, // High
PRICE_LOW_, // Low
PRICE_MEDIAN_, // Median Price (HL/2)
PRICE_TYPICAL_, // Typical Price (HLC/3)
PRICE_WEIGHTED_, // Weighted Close (HLCC/4)
PRICE_SIMPL_, // Simple Price (OC/2)
PRICE_QUARTER_, // Quarted Price (HLOC/4)
PRICE_TRENDFOLLOW0_, // TrendFollow_1 Price
PRICE_TRENDFOLLOW1_ // TrendFollow_2 Price
};
input int MLength=8; // Momentum period
input int AMA_Period=9; // AMA period
input int Fast_MA_Period=2; // Fast MA period
input int Slow_MA_Period=30; // Slow MA period
input Applied_price_ IPC=PRICE_CLOSE_; // Price constant
/* used for calculation of the indicator (1-CLOSE, 2-OPEN, 3-HIGH, 4-LOW,
5-MEDIAN, 6-TYPICAL, 7-WEIGHTED, 8-SIMPLE, 9-QUARTER, 10-TRENDFOLLOW, 11-0.5 * TRENDFOLLOW.) */
input double G=2.0; // A power the smoothing constant is raised to
input int Shift=0; // Horizontal shift of the indicator in bars
//---+
//---- indicator buffers
double MomentumBuffer[];
//+------------------------------------------------------------------+
// iPriceSeries function description |
// iPriceSeriesAlert function description |
// CMomentum and CAMA classes description |
//+------------------------------------------------------------------+
#include <SmoothAlgorithms.mqh>
//+------------------------------------------------------------------+
//| Momentum indicator initialization function |
//+------------------------------------------------------------------+
void OnInit()
{
//---- set dynamic array as an indicator buffer
SetIndexBuffer(0,MomentumBuffer,INDICATOR_DATA);
//---- horizontal shift of the indicator
PlotIndexSetInteger(0,PLOT_SHIFT,Shift);
//---- performing the shift of beginning of the indicator drawing
PlotIndexSetInteger(0,PLOT_DRAW_BEGIN,0);
//---- create a label to display in DataWindow
PlotIndexSetString(0,PLOT_LABEL,"Momentum_AMA");
//---- setting values of the indicator that won't be visible on a chart
PlotIndexSetDouble(0,PLOT_EMPTY_VALUE,EMPTY_VALUE);
//---- initializations of a variable for the indicator short name
string shortname;
StringConcatenate(shortname,"Momentum_AMA( MLength = ",MLength,")");
//---- creation of the name to be displayed in a separate sub-window and in a tooltip
IndicatorSetString(INDICATOR_SHORTNAME,shortname);
//---- determination of accuracy of displaying the indicator values
IndicatorSetInteger(INDICATOR_DIGITS,2);
//---- declaration of the CMomentum class variable from the SmoothAlgorithms.mqh file
CMomentum Mom;
//---- setting up alerts for unacceptable values of external variables
Mom.MALengthCheck("MLength", MLength);
Mom.MALengthCheck("AMA_Period", AMA_Period);
Mom.MALengthCheck("Fast_MA_Period", Fast_MA_Period);
Mom.MALengthCheck("Slow_MA_Period", Slow_MA_Period);
//---- initialization end
}
//+------------------------------------------------------------------+
//| Momentum iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total, // number of bars in history at the current tick
const int prev_calculated,// number of bars calculated at previous call
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
//---- checking the number of bars to be enough for the calculation
if(rates_total<MLength+AMA_Period+1) return(0);
//---- declaration of variables with a floating point
double price,momentum,amomentum;
//---- declaration of integer variables and getting already calculated bars
int first,bar;
//---- calculation of the 'first' starting number for the bars recalculation loop
if(prev_calculated==0) // checking for the first start of the indicator calculation
first=0; // starting index for calculation of all bars
else first=prev_calculated-1; // starting index for calculation of new bars
//---- declaration of the CMomentum and CAMA classes variables from the SmoothAlgorithms.mqh file
static CMomentum Mom;
static CAMA AMA;
//---- main indicator calculation loop
for(bar=first; bar<rates_total; bar++)
{
//---- call of the PriceSeries function to get incrementation of the input price dprice_
price=PriceSeries(IPC,bar,open,low,high,close);
//---- indicator calculation
momentum=Mom.MomentumSeries(0,prev_calculated,rates_total,MLength,price,bar,false);
amomentum=AMA.AMASeries(MLength+1,prev_calculated,rates_total,AMA_Period,Fast_MA_Period,Slow_MA_Period,G,momentum,bar,false);
//---- loading the obtained value in the indicator buffer
MomentumBuffer[bar]=amomentum/_Point;
}
//----
return(rates_total);
}
//+------------------------------------------------------------------+
Comments
Markdown Formatting Guide
# H1
## H2
### H3
**bold text**
*italicized text*
[title](https://www.example.com)

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