TradingView
JustUncleL
13. Sept. 2017 02:38

Renko with EMA and RMI Swing Catcher Ausbildung

U.S. Dollar/Canadian DollarFXCM

Beschreibung

This idea is designed to be used with 10pip brick (recommended) Renko charts. It combines the Renko price action with a directional coloured EMA (default length 6) and a RMI (instead of the usual RSI) indicator to provide entry and exit signal indication. The idea is to catch a Trend direction swing and stay with as long as possible.
The 10pip Renko bricks give the price action indication, it requires at least 20pip price change to change the color of a Renko brick.
The RMI is bit like RSI with a built-in momentum factor and works well with Renko. RMI indicates price momentum and strength of the swing and stays in the overbought (for long) or oversold (for short) whilst price has momentum in that direction.
Signals are optionally filtered by Daily or Weekly Open Rice, where by only trade long above open and short below open (this option is enabled by default). This helps control some short range swings getting out hand.
The directional EMA 6 is also used to detect the Price swing and is combined with the other indicators to provide a confirmed swing indication.
Exit occur when EMA or RMI reverses direction. Alternatively for quicker exits (disabled by default) when the Renko prints a brick in the reverse direction.
Each Entry and Exit signal creates an Alertcondition that can be picked up by the TradingView Alarm system.

TIP: To get 10pip Bricks set Renko to "Traditional" type bricks and 0.001 for non-JPY currency pairs and 0.1 for JPY currency pairs. Also set chart Time frame to 5min or 15mins.
Kommentare
bitsbybitsimakemyriches
Hi uncle L

Thank you for this amazing work really helping me out !!

Could you help me with converting this to strategy so i can btest it.

i tried doing this

i change this from your original script

long = PA==1 and HAS==1 and RMI==1
short = PA==-1 and HAS==-1 and RMI==-1

to

long condition = PA==1 and HAS==1 and RMI==1
shortcondition = PA==-1 and HAS==-1 and RMI==-1

if(longcondition)
strategy.entry("Long", strategy.long, comment= "asd")

if(shortcondition)
strategy.entry ("Short", strategy.short, comment= "asd")

always having trouble with continuation and partial variable on the word SHORT .....

also tried using when =long condition
strategy.entry( id = "Short", long = false, when = enterShort )

not helping too

plz help me learn

tyvm
JustUncleL
@bitsbybitsimakemyriches, Sorry it's impossible to see if your code is formatted correctly, please PM me directly to discuss.
iDS7
Where is the code and did you build a strategy for this yet?
JustUncleL
@Maustula, Code found here:

tradingview.com/script/y39A6vqh-Renko-Moving-Average-RMI-Alert-R3-by-JustUncleL/

No strategy has been written.
iDS7
@JustUncleL, Thanks Unc!
Archmarvin
@JustUncleL, where can i get this directional ema to use on my mt4
JustUncleL
@Archmarvin, This is the TradingView platform, script code generated here is not compatible to MT4 platform
Othuon
this strategy is amazing but I cant find it, help me find it or give the code please
rohitsawale390
very good indicator but cant see on daily charts
craziedde
Very useful strategy... and seems to be applicable to the regular stocks as well...
Would be very useful to implement this as "Strategy". Is it difficult to make?
Mehr