Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
9229
Rating:
(27)
Published:
2016.04.14 10:28
Updated:
2016.11.22 07:32
nrtr.mq5 (9.96 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

Real author:

Ramdass

NRTR is a trend indicator calculated using the CLOSE prices. The indicator is always located at the same distance from the reached extreme price. For an uptrend, it is displayed below the chart; for the downtrend — above. The meaning of this distance is to filter small corrective movements counter to the main trend. A stronger movement counter to the main trend above the preset level (the size of the moving filter) signals the complete trend reversal.

For an uptrend:

NRTR = Highest(Close, period)*(1-(K/100)),

For a downtrend:

NRTR = Lowest(Close, period)*(1+(K/100)),

where the first part of the expression is the highest/lowest extreme price reached since the last intersection of the indicator and the prices, K is the size of the moving filter in percentage terms, i.e. the distance between the indicator and reached extreme values.

Like any other simplified approach, this indicator works well in trending market, but may fail in non-trend periods.

Read more about the properties and versions of the indicator in the article "Trend indicator of dynamic price channel breakthrough" by Konstantin Kopyrkin (in Russian).


This indicator was first implemented in MQL4 and published in CodeBase at mql4.com on 13.07.2006.

Fig.1. The NRTR indicator

Fig.1. The NRTR indicator

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/15243

Panel-joke or a game system Panel-joke or a game system

An example of using the MasterWindows library for creating a game trade panel.

XCCX_StDev_HTF XCCX_StDev_HTF

The XCCX_StDev indicator with the timeframe selection option available in input parameters.

KalmanFilter_StDev_HTF KalmanFilter_StDev_HTF

The KalmanFilter_StDev indicator with the timeframe selection option available in input parameters.

PriceGrid PriceGrid

The indicator plots a price grid of levels rounded up to several digits.