MT4 Signal Indicator test

Created on Sunday, October 13, 2019 2:19 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 the Foxzard Trader Expert Advisor.
LOADING

Buy Conditions

Sell Conditions

Condition 1

Moving Average 72 Exponential Close
crosses
Moving Average 200 Exponential Close
from top to bottom

To download this signal indicator you need to login.

Register if you don't have an account.

or login with your social account

To use this custom indicator on Metatrader 4 platform you need:

  1. Download the MT4 version of this indicator and copy it into your metatrader experts/indicators folder.
  2. Restart your Metatrader 4 terminal.
  3. Indicator will appear under Custom Indicators section. Attach the indicator on the chart.

To use this signal pine script on TradingView platform you need:

  1. Download the pinescript version of this signal.
  2. Open the downloaded text file and copy contents into the tradingview script editor.
  3. Click the "Add to Chart" button.

Use it at your own risk!

This indicator was created by one of our visitors. You can create your own indicator like this one using your rules and logic.

Also you can use this indicator as a base to create your own. Click to create your own indicator from this one.