Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Thu Jul 29, 2021 9:20 pm
by ChuChu Rocket
Clemfandango1 wrote: Thu Jul 29, 2021 9:04 pm
I found an interesting variation of the Waddah Attar Explosion on tradingView
No MT5 one, but we have an MT4 version already here:
Waddah Attar Explosion ATR Deadzone.
Sorry, I know that doesn't really help. This site is still mainly focused on MT4

Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Thu Jul 29, 2021 10:24 pm
by Clemfandango1
Thanks anyway! yeah i think i moved to MT5 a bit too soon, i have almost everything i need on MT5 but frustratingly this is the only missing piece ( i knew the transition wouldn't be completely smooth!) i have asked Mr Tools/Mladen if they could possibly convert that MT4 version to MT5 on the 'convert MT4 to MT5' page, but they get so many requests so I'm sure they're busy with other things.
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Sat Aug 14, 2021 8:13 pm
by PumbaPLS
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Fri Sep 03, 2021 2:22 pm
by Banzai
Smart Envelope
Coder: Giovanni Riccobene
Released date: May 4th, 2021 from the official mql5 dot com
Clone for metatrader4 of "Smart Envelope - Running Away From The Trend" indicator by alexgrover from tradingview
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Fri Sep 03, 2021 3:50 pm
by josi
Banzai wrote: Fri Sep 03, 2021 2:22 pm
I must say it is hard to even find a pair on which the concept is fully displayed.
Can't really see how it could be of any help in daily trading at the moment.
If anyone has ideas, please tell.
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Wed Oct 20, 2021 5:47 am
by cptwillwilliams
Is there any way someone can convert this to an mt4 indicator?
https://www.tradingview.com/script/gY4i ... NXZMSWFVWQ..
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Wed Oct 27, 2021 4:15 am
by JNascente
Could someone transform to mt4, please. thanks
//@version=3
// Copyright (c) 2018-present, Alex Orekhov (everget)
// Rainbow Oscillator script may be freely distributed under the MIT license.
study("Rainbow Oscillator", shorttitle="ROSC")
maLength = input(title="Moving Average Length", type=integer, minval=1, defval=2)
maInput = input(title="Moving Average Type", defval="SMA", options=["EMA", "SMA", "VWMA", "WMA"])
highestLookback = input(title="Highest Price Lookback", type=integer, minval=1, defval=10)
lowestLookback = input(title="Lowest Price Lookback", type=integer, minval=1, defval=10)
drawBg = input(title="Draw Backgrounds ?", type=bool, defval=true)
src = input(title="Source", type=source, defval=close)
getMA(src, maLength) =>
ma = 0.0
if maInput == "EMA"
ma := ema(src, maLength)
if maInput == "SMA"
ma := sma(src, maLength)
if maInput == "VWMA"
ma := vwma(src, maLength)
if maInput == "WMA"
ma := wma(src, maLength)
ma
ma1 = getMA(src, maLength)
ma2 = getMA(ma1, maLength)
ma3 = getMA(ma2, maLength)
ma4 = getMA(ma3, maLength)
ma5 = getMA(ma4, maLength)
ma6 = getMA(ma5, maLength)
ma7 = getMA(ma6, maLength)
ma8 = getMA(ma7, maLength)
ma9 = getMA(ma8, maLength)
ma10 = getMA(ma9, maLength)
maMax = max(ma1,
max(ma2,
max(ma3,
max(ma4,
max(ma5,
max(ma6,
max(ma7,
max(ma8,
max(ma9,
ma10)))))))))
maMin = min(ma1,
min(ma2,
min(ma3,
min(ma4,
min(ma5,
min(ma6,
min(ma7,
min(ma8,
min(ma9,
ma10)))))))))
hlDiff = highest(src, highestLookback) - lowest(src, lowestLookback)
average = (ma1 + ma2 + ma3 + ma4 + ma5 + ma6 + ma7 + ma8 + ma9 + ma10) / 10
rosc = hlDiff != 0
? 100 * (src - average) / hlDiff
: 0
band = hlDiff != 0
? 100 * (maMax - maMin) / hlDiff
: 0
roscColor = rosc > 0 ? green : red
roscPlot = plot(rosc, title="ROSC", style=histogram, linewidth=3, color=roscColor, transp=0)
upperBandColor = drawBg ? gray : green
upperBandPlot = plot(band, title="Upper", color=upperBandColor)
middlePlot = plot(0, title="Middle", color=gray)
lowerBandColor = drawBg ? gray : red
lowerBandPlot = plot(-1 * band, title="Lower", color=lowerBandColor)
transparentColor = color(white, 100)
upperFillColor = drawBg ? green : transparentColor
lowerFillColor = drawBg ? red : transparentColor
fill(middlePlot, upperBandPlot, color=upperFillColor)
fill(middlePlot, lowerBandPlot, color=lowerFillColor)
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Sun Jan 09, 2022 9:38 pm
by sal
Similar to TradingView
[/quote]
Dear traders/coders
do have custom movable Risk Reward Tool indicator for mt4
its name is Trade View Risk Reward Tool.
please share if have the same or similiar.!
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Mon Jan 10, 2022 3:47 am
by sal
Automatic Risk Reward Box on current bar
expert coders can help to update this adding additional features!!!
Re: Already Converted TradingView Indicators to MT4 Indicators
Posted: Mon Jan 10, 2022 9:36 pm
by Jagg
sal wrote: Sun Jan 09, 2022 9:38 pm
Dear traders/coders
do have custom movable Risk Reward Tool indicator for mt4
its name is Trade View Risk Reward Tool.
please share if have the same or similiar.!
The best one I've seen until now is that one
https://www.toolsfx.com/product/mt4-trade-manager-ea/ (but it's not free)