1798 Indicators

Ryan_Jones_SM

Ryan_Jones_SM It shows where to buy and where to sell via the arrows. If a trend occurs then it will bring profit, if there is no trend, there will be no profit. Input Parameters: extern int       ParY=3;  //”Y” parameter extern int       ParX=20; //”X” parameter Rules: The method that gives those numbers is miraculously simple. The rules…

Read More

Extrapolator

Extrapolator  The indicator is based on several methods that can be chosen by the Method input variable: Method 1: Fourier’s extrapolation; the frequencies are calculated using the Quinn-Fernandes Algorithm Method 2: Autocorrelation Method Method 3: Weighted Burg Method Method 4: Burg Method with Helme-Nikias weighting function Method 5: Itakura-Saito (geometric) method Method 6: Modified covariance…

Read More

Multy_MA

Multy_MA It shows the difference between two MAs in a separate window. Minor and major MA can be set up. The indicator of group moving. It shows the difference between two MAs in a separate window. There is something wrong with the code, it doesn’t draw anything instantly, first of all, you should “reload” the…

Read More

Correlation

Correlation  The indicator calculates the correlation of the currency pairs. Input Parameters: extern string OtherChart=”EURUSD”; extern int n=20; extern bool UseOpen=true; extern bool UseClose=false; extern bool UseHigh=false; extern bool UseLow=false; extern int CalcBars=400;

Read More

CosMod

CosMod  The indicator shows the cosine of the material excess from the division of the symbol price by the moving average.

Read More

Period_Converter_MN

Period_Converter_MN   MT4 has some limitations concerining the displaying of the periods charts that are older than monthly. As far as some people wish to see the larger periods (for example, half-yearly or yearly), I developed the indicator that allows to do it. How to Use: 1. Attach only to the monthly chart (MN1) 2….

Read More

Indicator of Equity in the Form of Japanese Candlesticks

Indicator of Equity in the Form of Japanese Candlesticks the equity chart in the form of the japanese candlesticks, it gives a visible range of differences more delicate adjusting by the orders filtering (besides the magic number and the symbol you can add the selection by the comment or the type of operation) the writing…

Read More

MF_BreakDown_Flat

MF_BreakDown_Flat For now there is no need to draw the levels manually. It will be very useful for the novices. According to the TS MF, usually the first enter point is at the double break through and the support of the associates. Input Parameters: extern int    Дней=10;                  // How many days in history to display. extern string…

Read More

HP Extrapolator

HP Extrapolator The distinctive feature of the Hodrick-Prescott filter is that it does not delay. It is calculated by minimizing the objective function F = Sum((y[i] – x[i])^2,i=0..n-1) + lambda*Sum((y[i+1]+y[i-1]-2*y[i])^2,i=1..n-2) where x[] – prices, y[] – filter values. Below is the example of the filter behavior (see the file HP.mq4 attached below)   If the…

Read More