TradingView
HPotter
Jul 23, 2021 1:23 PM

Kwan NRP 

E-mini S&P 500 FuturesCME

Description

To calculate the coordinates in which the kink of the line will cross,
the standard Forex instruments are used - Relative Strenght Index, Stochastic and Momentum.
It is very easy to optimize them for the existing trading strategy: they all have very
flexible and easily customizable parameters. Signals to enter the market can be 2 situations:
Change of color of the indicator line from red to blue. At the same time, it is worth entering into the purchase;
Change of color of the indicator line from blue to red. In this case, it is worth entering for sale.
The signals are extremely clear and can be used in practice even by beginners. The indicator
itself shows when to make deals: the user only has to accompany them and set the values
of Take Profit and Stop Loss. As a rule, the signal to complete trading is the approach of
the indicator level to the levels of the maximum or minimum of the previous time period.
Comments
btopcuoglu21
kripto da bunu kullanabilir miyiz?
Mr-Nobody_
Türkmüşsün ya la.
highroller1st
hi! very good ind but can you tell why 0 value ind reach more than +100 ? is that some error in calculation ? i think your +90 is same as +100.... please check
tanuimath
Hi porter i really like your combination the way manage to put it together this wonderful indicator but how can i get this indicator and use it to improve on my trading on trading view ? Because i can see from your explanation it sound very good to use. please advice?
dxf202169
hello,Do you know how to make this candle and the arc top and bottom? thank you
HPotter
@dxf202169, Hello, I do not understand what do you mean - arc top and bottom?
dxf202169
Equivalent to the form of the letter u
dxf202169
It's like a candle in the shape of an arc. You have a lot of scripts like that.
HPotter
@dxf202169, can you give me link as example?
dxf202169
@HPotter, //@version=2
// //////////////// Attempt to Reduced ReDraw version /////////////////////
//
// Microcana.com strategy by pilotgsms - version 4.20b <<<< Edited by Seaside420 >>>> special thanks to 55cosmicpineapple
// Hull_MA_cross added to script
strategy("M&H_v420b", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100, calc_on_order_fills= true, calc_on_every_tick=true, pyramiding=0)
dt = input(defval=0.0010, title="Decision Threshold", type=float, step=0.0001)
dd = input(defval=1, title="Post Signal Bar Delay", type=float, step=1)
df = input(defval=5, title="Close Position Bar Delay", type=float, step=1)
keh=input(title="Double HullMA Cross",type=integer,defval=7, minval=1)
confidence=(security(tickerid, 'D', close)-security(tickerid, 'D', close[1]))/security(tickerid, 'D', close[1])
prediction = confidence > dt ? true : confidence < -dt ? false : prediction[1]
n2ma=2*wma(close,round(keh/2))
nma=wma(close,keh)
diff=n2ma-nma,sqn=round(sqrt(keh))
n2ma1=2*wma(close[2],round(keh/2))
nma1=wma(close[2],keh)
diff1=n2ma1-nma1,sqn1=round(sqrt(keh))
n1=wma(diff,sqn)
n2=wma(diff1,sqn)
openlong=prediction[dd] and n1>n2 and strategy.opentrades<1
if (openlong)
strategy.entry("Long", strategy.long)
openshort=not prediction[dd] and n2>n1 and strategy.opentrades<1
if (openshort)
strategy.entry("Short", strategy.short)
closeshort=prediction and close<low[df]
if (closeshort)
strategy.close("Short")
closelong=not prediction and close>high[df]
if (closelong)
strategy.close("Long")
More