Convert from Pinescript to MT4

If you need an Indicator or Signal developed or translated from other language, please post all Indicator development REQUESTS to this section here.

Moderator: admin

Re: Convert from Pinescript to MT4

Postby woltrus » Fri Oct 07, 2022 2:48 am

Anyone help me convert from Pinescript to MT4, thank you

https://www.tradingview.com/script/Ciur ... end-Meter/
woltrus
 
Posts: 1
Joined: Fri Oct 07, 2022 2:41 am

Re: Convert from Pinescript to MT4

Postby Apprentice » Tue Oct 11, 2022 3:27 am

We have added your request to the development list.
Development reference 646.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia

Re: Convert from Pinescript to MT4

Postby jessenguyen » Sat Oct 29, 2022 3:55 am

Could anyone please help convert this Pinescript to MT4?

https://www.tradingview.com/script/uem3 ... C-ID-AC-P/

Thanks in advance,
jessenguyen
 
Posts: 1
Joined: Sat Oct 29, 2022 3:51 am

Re: Convert from Pinescript to MT4

Postby Apprentice » Sun Oct 30, 2022 4:12 am

We have added your request to the development list.
Development reference 683.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia


Re: Convert from Pinescript to MT4

Postby kstaffie1 » Mon Nov 28, 2022 4:19 am

Good Day

Could Anyone please help me convert these 2 indicators to mt4

Thank you

https://www.tradingview.com/script/smXJk7s5-SuperTrend/

As Well as this please

//@version=5
indicator(title="Commodity Channel Index", shorttitle="CCI", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
length = input.int(20, minval=1)
src = input(hlc3, title="Source")
ma = ta.sma(src, length)
cci = (src - ma) / (0.015 * ta.dev(src, length))
plot(cci, "CCI", color=#2962FF)
band1 = hline(100, "Upper Band", color=#787B86, linestyle=hline.style_dashed)
hline(0, "Middle Band", color=color.new(#787B86, 50))
band0 = hline(-100, "Lower Band", color=#787B86, linestyle=hline.style_dashed)
fill(band1, band0, color=color.rgb(33, 150, 243, 90), title="Background")

ma(source, length, type) =>
switch type
"SMA" => ta.sma(source, length)
"EMA" => ta.ema(source, length)
"SMMA (RMA)" => ta.rma(source, length)
"WMA" => ta.wma(source, length)
"VWMA" => ta.vwma(source, length)

typeMA = input.string(title = "Method", defval = "SMA", options=["SMA", "EMA", "SMMA (RMA)", "WMA", "VWMA"], group="Smoothing")
smoothingLength = input.int(title = "Length", defval = 5, minval = 1, maxval = 100, group="Smoothing")

smoothingLine = ma(cci, smoothingLength, typeMA)
plot(smoothingLine, title="Smoothing Line", color=#f37f20, display=display.none)
kstaffie1
 
Posts: 1
Joined: Mon Nov 28, 2022 4:01 am

Re: Convert from Pinescript to MT4

Postby Apprentice » Thu Dec 01, 2022 6:24 am

We have added your request to the development list.
Development reference 792.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia

Re: Convert from Pinescript to MT4

Postby Austyno » Sat Dec 03, 2022 9:08 am

Greetings, please can you assist me in converting this pinescript to MT4

https://www.tradingview.com/v/cWwWQ7ZK/

Your help will be greatly appreciated.
Austyno
 
Posts: 1
Joined: Sat Dec 03, 2022 9:01 am

Re: Convert from Pinescript to MT4

Postby Apprentice » Mon Dec 05, 2022 6:03 am

We have added your request to the development list.
Development reference 797.
User avatar
Apprentice
FXCodeBase: Confirmed User
 
Posts: 36341
Joined: Thu Dec 31, 2009 11:59 am
Location: Zagreb, Croatia


PreviousNext

Return to Indicator and Signal Requests

Who is online

Users browsing this forum: No registered users and 15 guests