Pivot RS Session
Pivot RS Session Pivot RS Session indicator. Shows trading sessions.
NRTR Normally, authors of indicators of this kind use only the current trend support lines. However, I had to add resistance lines during debugging. This resulted in something I really liked: The obtained ‘stairs’ had thickness. This thickness is called ‘brick’ in my other versions. This can be useful for calculation of the stop size…
Zigzag2 R In the standard Zigzag.mq4 the style DRAW_SECTION was used for drawing. This style allowed drawing only lines between points placed on different bars. The drawing style DRAW_ZIGZAG allows to avoid this limitation. For this purpose two buffers are used instead of one. The indicator Zigzag2_R_.mql4 illustrates this style. Added into the code: the processing of the outside…
NRMA NRMA is the famous indicator by Konstantin Kopyrkin, it produced numerous realizations of the indicator NRTR. In this variant we see a moving average (line) and trailing stops NRTR (points). Access to other intermediate Omega indicators (NRTR_Oscillator, NRatio, NRTR_DT) is available throug calls of iCustom(NULL,0,”NRMA”,parameters,index_number, shift).
Perry Kaufman AMA Optimized Added an external parameter named AMA_Trend_Type that defines the choice of trend detecting method. AMA_Trend_Type is nonzero: The difference between the current value of AMA (AMA[0]) and the value of AMA on the preceding bar (AMA[1]) is measured. deltaAMA=AMA[0]-AMA[1]. The trend detection sensitivity is set in points as dK*Point….