Page 30 of 86

Re: Heiken Ashi Type Indicators

Posted: Tue Aug 24, 2021 6:51 pm
by legat12
Hello traders and coders,

I don't know if I'm in the right section, but I would like to know if someone could translate this code (Trading view) in MQ4?
Its a sort of Heiken ashi but with less noise.

Regards,

//
study(title="Humble LinReg Candles", shorttitle="LinReg Candles", format=format.price, precision=4, overlay=true)

signal_length = input(title="Signal Smoothing", type=input.integer, minval = 1, maxval = 200, defval = 11)
sma_signal = input(title="Simple MA (Signal Line)", type=input.bool, defval=true)

lin_reg = input(title="Lin Reg", type=input.bool, defval=true)
linreg_length = input(title="Linear Regression Length", type=input.integer, minval = 1, maxval = 200, defval = 11)

bopen = lin_reg ? linreg(open, linreg_length, 0) : open
bhigh = lin_reg ? linreg(high, linreg_length, 0) : high
blow = lin_reg ? linreg(low, linreg_length, 0) : low
bclose = lin_reg ? linreg(close, linreg_length, 0) : close

r = bopen < bclose

signal = sma_signal ? sma(bclose, signal_length) : ema(bclose, signal_length)

plotcandle(r ? bopen : na, r ? bhigh : na, r ? blow: na, r ? bclose : na, title="LinReg Candles", color= color.green, wickcolor=color.green, bordercolor=color.green, editable= true)
plotcandle(r ? na : bopen, r ? na : bhigh, r ? na : blow, r ? na : bclose, title="LinReg Candles", color=color.red, wickcolor=color.red, bordercolor=color.red, editable= true)

plot(signal, color=color.white)

Re: Heiken Ashi Type Indicators

Posted: Wed Aug 25, 2021 4:52 am
by mrtools
legat12 wrote: Tue Aug 24, 2021 6:51 pm Hello traders and coders,

I don't know if I'm in the right section, but I would like to know if someone could translate this code (Trading view) in MQ4?
Its a sort of Heiken ashi but with less noise.

Regards,

//
study(title="Humble LinReg Candles", shorttitle="LinReg Candles", format=format.price, precision=4, overlay=true)

signal_length = input(title="Signal Smoothing", type=input.integer, minval = 1, maxval = 200, defval = 11)
sma_signal = input(title="Simple MA (Signal Line)", type=input.bool, defval=true)

lin_reg = input(title="Lin Reg", type=input.bool, defval=true)
linreg_length = input(title="Linear Regression Length", type=input.integer, minval = 1, maxval = 200, defval = 11)

bopen = lin_reg ? linreg(open, linreg_length, 0) : open
bhigh = lin_reg ? linreg(high, linreg_length, 0) : high
blow = lin_reg ? linreg(low, linreg_length, 0) : low
bclose = lin_reg ? linreg(close, linreg_length, 0) : close

r = bopen < bclose

signal = sma_signal ? sma(bclose, signal_length) : ema(bclose, signal_length)

plotcandle(r ? bopen : na, r ? bhigh : na, r ? blow: na, r ? bclose : na, title="LinReg Candles", color= color.green, wickcolor=color.green, bordercolor=color.green, editable= true)
plotcandle(r ? na : bopen, r ? na : bhigh, r ? na : blow, r ? na : bclose, title="LinReg Candles", color=color.red, wickcolor=color.red, bordercolor=color.red, editable= true)

plot(signal, color=color.white)
Think this is pretty close.

Re: Heiken Ashi Type Indicators

Posted: Thu Sep 16, 2021 1:42 pm
by mrtools
This is an attempt to translate the tradeview Heiken ashi rsi. Indicator has divergence and limit bars to hopefully make it lighter on the computer.

Re: Heiken Ashi Type Indicators

Posted: Thu Sep 16, 2021 10:46 pm
by moey_dw
mrtools wrote: Thu Sep 16, 2021 1:42 pm This is an attempt to translate the tradeview Heiken ashi rsi. Indicator has divergence and limit bars to hopefully make it lighter on the computer.
waoww super nice indi mrtoos........... pls can u give us option to select color for levels!!! 🙏🙏🙏

Re: Heiken Ashi Type Indicators

Posted: Thu Sep 16, 2021 11:19 pm
by Jimmy
mrtools wrote: Thu Sep 16, 2021 1:42 pm This is an attempt to translate the tradeview Heiken ashi rsi. Indicator has divergence and limit bars to hopefully make it lighter on the computer.
This is a superb indicator. A new RSI Divergence with additional Heiken Ashi in the subwindow which can be used to gauge trends :Shocked:

Re: Heiken Ashi Type Indicators

Posted: Fri Sep 17, 2021 12:47 am
by mrtools
moey_dw wrote: Thu Sep 16, 2021 10:46 pm waoww super nice indi mrtoos........... pls can u give us option to select color for levels!!! 🙏🙏🙏
Added the level color option.

Re: Heiken Ashi Type Indicators

Posted: Fri Sep 17, 2021 8:41 pm
by moey_dw
mikew6051 wrote: Thu Sep 16, 2021 1:49 am could this ha rsi oscillator indicator from trading view be converted into mt4?
HI MIKE MRTOOLS MADE THE INDICATOR IN POST ABOVE.......... U TRY IT YET OR??

mrtools wrote: Fri Sep 17, 2021 12:47 am Added the level color option.
beast............ thx bro mrtoolz it is the rsi that rsi traders must now use bcos u can use as a normal rsi but with heiken ashi thrown in............ :Fire: :Fire: :Fire:

Re: Heiken Ashi Type Indicators

Posted: Sat Sep 18, 2021 2:00 am
by ujtrader
mrtools wrote: Fri Sep 17, 2021 12:47 am Added the level color option.
hi mr.tools
great indicator thanks. the updated version with color for me it is showing nothing any instructions please?
Thankyou!!

Re: Heiken Ashi Type Indicators

Posted: Sat Sep 18, 2021 2:40 am
by mrtools
ujtrader wrote: Sat Sep 18, 2021 2:00 am hi mr.tools
great indicator thanks. the updated version with color for me it is showing nothing any instructions please?
Thankyou!!
Are you getting any errors in your terminal/experts or terminal/journal tabs?

Re: Heiken Ashi Type Indicators

Posted: Sun Sep 19, 2021 1:10 pm
by ujtrader
mrtools wrote: Sat Sep 18, 2021 2:40 am Are you getting any errors in your terminal/experts or terminal/journal tabs?
it only show empty in offline charts...no error it says loaded successfully