Re: Already Converted TradingView Indicators to MT4 Indicators

392
mrtools wrote: Mon Feb 26, 2024 4:45 am Follow The Line with Regularized MA's + All Averages (Filters)

All the averages updated with Regularized Moving Averages too.

PS: For more information on this code, please see: Follow The Line + Angle Of Attack indicators.

Hi Mr Tools, how are you? Here I am again with suggestions.

I know we already have a plethora of excellent averages added to your kit and Kvak's kit.

However, I was remembering this specific one, I was just curious to test it with Step RMA (both your version and Kvak's) + Follow the Lines Avgs.

Could you convert this specific average please?

//
// @author LazyBear
//
// If you use this code in its original/modified form, do drop me a note.
//
study(title="WaveTrend [LazyBear]", shorttitle="WT_LB")
n1 = input(10, "Channel Length")
n2 = input(21, "Average Length")
obLevel1 = input(60, "Over Bought Level 1")
obLevel2 = input(53, "Over Bought Level 2")
osLevel1 = input(-60, "Over Sold Level 1")
osLevel2 = input(-53, "Over Sold Level 2")

ap = hlc3
esa = ema(ap, n1)
d = ema(abs(ap - esa), n1)
ci = (ap - esa) / (0.015 * d)
tci = ema(ci, n2)

wt1 = tci
wt2 = sma(wt1,4)

plot(0, color=gray)
plot(obLevel1, color=red)
plot(osLevel1, color=green)
plot(obLevel2, color=red, style=3)
plot(osLevel2, color=green, style=3)

plot(wt1, color=green)
plot(wt2, color=red, style=3)
plot(wt1-wt2, color=blue, style=area, transp=80)



If anyone is interested, follow the template + indicators.

Thank you very much again for all your help as always, Mr Tools :D
These users thanked the author RodrigoRT7 for the post (total 2):
galaxy, trader2000

Re: Already Converted TradingView Indicators to MT4 Indicators

393
RodrigoRT7 wrote: Fri Mar 08, 2024 3:59 pm Hi Mr Tools, how are you? Here I am again with suggestions.

I know we already have a plethora of excellent averages added to your kit and Kvak's kit.

However, I was remembering this specific one, I was just curious to test it with Step RMA (both your version and Kvak's) + Follow the Lines Avgs.

Could you convert this specific average please?

//
// @author LazyBear
//
// If you use this code in its original/modified form, do drop me a note.
//
study(title="WaveTrend [LazyBear]", shorttitle="WT_LB")
n1 = input(10, "Channel Length")
n2 = input(21, "Average Length")
obLevel1 = input(60, "Over Bought Level 1")
obLevel2 = input(53, "Over Bought Level 2")
osLevel1 = input(-60, "Over Sold Level 1")
osLevel2 = input(-53, "Over Sold Level 2")

ap = hlc3
esa = ema(ap, n1)
d = ema(abs(ap - esa), n1)
ci = (ap - esa) / (0.015 * d)
tci = ema(ci, n2)

wt1 = tci
wt2 = sma(wt1,4)

plot(0, color=gray)
plot(obLevel1, color=red)
plot(osLevel1, color=green)
plot(obLevel2, color=red, style=3)
plot(osLevel2, color=green, style=3)

plot(wt1, color=green)
plot(wt2, color=red, style=3)
plot(wt1-wt2, color=blue, style=area, transp=80)



If anyone is interested, follow the template + indicators.

Thank you very much again for all your help as always, Mr Tools :D
sir , thanks for sharing your template .. i want to ask you for which time frame you adjust it .. because i notice some indicator set on 30min other on 1h time frame ?
These users thanked the author trader2000 for the post:
RodrigoRT7

Re: Already Converted TradingView Indicators to MT4 Indicators

394
trader2000 wrote: Sun Mar 10, 2024 12:57 am sir , thanks for sharing your template .. i want to ask you for which time frame you adjust it .. because i notice some indicator set on 30min other on 1h time frame ?
How is my friend trader2000?

The configuration is in the template I sent.

But basically, I usually use M15 or M30 to see price action.

Step Ma and Follow the line are at M30 and the 3 MA Histo is at one hour.

I like to use the Half Trend AHTF on H4 too, like in this photo.

Feel free to clear any doubts. :D
Attachments
These users thanked the author RodrigoRT7 for the post (total 2):
galaxy, trader2000

Re: Already Converted TradingView Indicators to MT4 Indicators

395
RodrigoRT7 wrote: Sun Mar 10, 2024 2:18 am How is my friend trader2000?

The configuration is in the template I sent.

But basically, I usually use M15 or M30 to see price action.

Step Ma and Follow the line are at M30 and the 3 MA Histo is at one hour.

I like to use the Half Trend AHTF on H4 too, like in this photo.

Feel free to clear any doubts. :D
thanks for your response sir , i like to share with you my new collected system (from this great forum and other ) template and indicator work on 15 min tf(sure any tf and assets) . i hope to try it and if any improvement needed or opinion
These users thanked the author trader2000 for the post:
RodrigoRT7


Re: Already Converted TradingView Indicators to MT4 Indicators

396
trader2000 wrote: Sun Mar 10, 2024 7:20 am thanks for your response sir , i like to share with you my new collected system (from this great forum and other ) template and indicator work on 15 min tf(sure any tf and assets) . i hope to try it and if any improvement needed or opinion smart trend system.zipScreenshot 2024-03-10 043852.png
You don't need to call me sir, my friend, :D

If you allow me a humble suggestion:

For Renko Arrow, there were no changes to its parameters, which is not good.

Apollo Smart Level trader also ends up giving too many signals without having a customization option.

Renko Blast Trend, it seems to me like a decompiled code from the Step nema that we have here on the forum, once again with no chance of customization

Finally, my humble recommendation is that you avoid indicators with very commercial names: Master, Pro, Turbo, etc...

they are usually bad repainters and/or bad codes.
:D

Re: Already Converted TradingView Indicators to MT4 Indicators

397
mrtools wrote: Mon Feb 26, 2024 4:45 am Follow The Line with Regularized MA's + All Averages (Filters)

All the averages updated with Regularized Moving Averages too.

PS: For more information on this code, please see: Follow The Line + Angle Of Attack indicators.
Hi Mr Tools, can you add an ON/OFF button please? thank you so much
These users thanked the author brasciolo for the post:
RodrigoRT7

Re: Already Converted TradingView Indicators to MT4 Indicators

399
RodrigoRT7 wrote: Tue Feb 07, 2023 9:21 am Hello my friends! all good? Sorry to go back to this topic about this indicator, but it's the ones I liked the most that are not available for MT4, if anyone has the expertise to convert from Tradingview to MT4, I would be deeply grateful.

Thanks a lot, in advance. s2

NOTE: I am referring to cora wave :D
i may start converting these myself soon, something im thinking about but still need to finish off some GKD stuff. a few of these one offs have been featured in editors picks via conversion to trade station and such, so stay tuned. im getting there slowly
These users thanked the author loxx for the post (total 3):
galaxy, mrtools, RodrigoRT7


Who is online

Users browsing this forum: 88FX88, Amazon [Bot], Facebook [Crawler], Grapeshot [Bot], IBM oBot [Bot], Yandex [Bot] and 77 guests