Page 40 of 66

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sat Mar 16, 2024 6:17 am
by mrtools
brasciolo wrote: Sat Mar 16, 2024 5:41 am Hi Mr Tools, can you add an ON/OFF button please? thank you so much
On/off button added.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Mar 17, 2024 9:31 am
by loxx
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

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Mar 17, 2024 9:42 am
by brasciolo
mrtools wrote: Sat Mar 16, 2024 6:17 am On/off button added.
Thank you dear

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Mar 17, 2024 10:05 pm
by abds
can you please convert this to mt4 thank you.

Mod edit: Code removed as it wasn't wrapped.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 18, 2024 1:09 am
by Jimmy
abds wrote: Sun Mar 17, 2024 10:05 pm can you please convert this to mt4 thank you.

Mod edit: Code removed as it wasn't wrapped.
No because you have to make an effort by giving us more information on what it is and why you believe it would be a good code to convert.

All we see is lines of garbled characters pasted into a post that hasn't even had been "wrapped" so I've removed it.

Try again and read the first post on how to make a request in this topic please.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 18, 2024 3:35 am
by abds
https://www.tradingview.com/script/cDYxceJy-ZendicatoR/

Can you please convert this indicator to mt4, i believe it's a good indicator for identifying up and down trends thank you.
i couldn't attach screenshot it gives me an error.

Code: Select all

//@version=2
strategy("ZendicatoR", overlay=true, calc_on_order_fills= true, calc_on_every_tick=true, default_qty_type=strategy.percent_of_equity, default_qty_value=15, pyramiding=0)
dt = input(defval=0.0010, title="Decision Threshold", type=float, step=0.0001)
keh=input(title="Double HullMA Cross",type=integer,defval=7, minval=1)
che1=input(title="MA 1",type=integer,defval=34,minval=1)
che2=input(title="MA 2",type=integer,defval=144,minval=1)
che3=input(title="MA 3",type=integer,defval=377,minval=1)
amnt=input(title="TP ($)",type=integer,defval=4200,minval=1)
wma1=wma(close,che1)
wma2=wma(close,che2)
wma3=wma(close,che3)
tms=10000000000000
A=security(tickerid, 'D', close)*tms
B=security(tickerid, 'D', close[1])*tms
C=A>B?green:red
D=wma2>wma3?green:red
plot(wma1,style=line,color=C,linewidth=4)
p1=plot(wma2,style=line,color=D)
p2=plot(wma3,style=line,color=D)
fill(p1, p2, color=D, transp=75)
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)*tms
n2=wma(diff1,sqn)*tms
closelong = A*tms<B*tms and n2*tms>n1*tms and strategy.openprofit>amnt
if (closelong)
    strategy.close("Long")
closeshort = A*tms>B*tms and n1*tms>n2*tms and strategy.openprofit>amnt
if (closeshort)
    strategy.close("Short") 
longCondition = A*tms>B*tms and n1*tms>n2*tms
if (longCondition)
    strategy.entry("Long",strategy.long)
shortCondition = A*tms<B*tms and n1*tms<n2*tms
if (shortCondition)
    strategy.entry("Short",strategy.short)

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 18, 2024 5:47 am
by galaxy
abds wrote: Mon Mar 18, 2024 3:35 am htt//www.tradingview.co
Repaints

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 18, 2024 6:23 am
by abds
galaxy wrote: Mon Mar 18, 2024 5:47 am Repaints
I know.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 18, 2024 8:15 pm
by ionone
abds wrote: Mon Mar 18, 2024 6:23 amI know.
without "calc_on_order_fills= true" it's not good at all

not worth converting IMO

Jef

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sat Mar 23, 2024 6:14 am
by thomdel
mrtools wrote: Sat Mar 16, 2024 6:17 am On/off button added.


Respected mrtools Sir,

If Time Permits & if you find this useful then :
Request you to kindly Add : to Indicator : ! Follow the line - avgs (mtf + arrows + alerts + btn)
1) Colour Candles
2) Shadow Line Colour / Shadow Line Width

This will help us all as it will make this indicator complete with all features.

Thanks for your Time, Efforts, shares.
Thanks for your support, kindness to this forum / to all users.