test
Created on 10/13/2019 2:16:53 AM
The DiNapoli 3 x Displaced Moving Averages
Based on "Joe DiNapoli - The Practical Application of Fibonacci Analysis to
Investment Markets"
* DMA 3 x 3 - The 3 period simple moving average of close, displaced
forward 3 periods
for the short term and is extremely useful in thrusting
markets.
* DMA 7 x 5 - The 7 period simple moving average of close, displaced
forward 5 periods
longer-based DMA that many have found useful in equity
market analysis
- DMA 25 x 5 - The 25 period simple moving average of close, displaced
forward 5 periods
longer term DMA
Created By TohMz
*************************************************************************************************/
_SECTION_BEGIN("DMA3x3");
Periods = 3;
Displace = 3;
Plot( MA( C, Periods), _DEFAULT_NAME(), ParamColor( "Color", colorRed ),
ParamStyle("Style", styleLine, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
_SECTION_BEGIN("DMA7x5");
P = C;
Periods = 7;
Displace = 5;
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorBlue ),
ParamStyle("Style", styleDashed, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
_SECTION_BEGIN("DMA25x5");
P = C;
Periods = 25;
Displace = 5;
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorGreen ),
ParamStyle("Style", styleDashed, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
//*** Remove below portion, so that you can attach to any price chart ***
_N(Title = StrFormat("{{NAME}}- {{INTERVAL}} {{DATE}} O= %g, H= %g, L= %g, C=
%g (%.1f%%) V= " +WriteVal( V, 1.0 ) +"\n{{VALUES}}", O, H, L, C, SelectedValue(
ROC( C, 1 )) ));
PriceStyle = GetPriceStyle();
PriceStyleOpt = ParamStyle("Style") | PriceStyle;
if (PriceStyle==styleCandle)
Plot( C, "", colorBlack, PriceStyleOpt);
else
Plot( C, "", IIf( Close >= Ref(C, -1), colorBlue, colorRed ),
PriceStyleOpt);
This indicator can be used as a signal provider for
LOCTrader Expert Advisor.
EURUSD
USDJPY
GBPUSD
USDCHF
M1
M5
M15
M30
Hourly
H4
Daily
Buy Signals
Condition 1
Moving Average 72 Exponential Close
Crosses from Top to Bottom
Moving Average 14 Simple Close
To download this signal indicator you need to register or login. It is free.
Please Login
Password is required.
|
Create Account
First Name is required.
Last Name is required.
Email is required.
This Email address is already registered.
Password is required.
Password and confirm password fields must be same.
This is a custom indicator for Metatrader 4 platform. To use it you need:
- Download this indicator and copy into your metatrader experts/indicators folder.
- Restart your Metatrader 4 terminal.
- Indicator will appear under Custom Indicators section. Attach the indicator on the chart.