Page 7 of 59

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Jan 10, 2022 10:15 pm
by sal
Jagg wrote: Mon Jan 10, 2022 9:36 pm 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)
demo will not have full features..
i posted a block indicator which can be upgrade by expert coders.
in forum there are skilled coders may be they missed my request.
expecting their suggestion and feed back for entire community.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Tue Feb 15, 2022 4:42 pm
by A_5
Please can this be converted to mt4
https://www.tradingview.com/script/rvHV ... ck-Finder/

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Feb 20, 2022 2:10 am
by RomanUkraine
Please can this be converted to mt4

https://www.tradingview.com/script/aiYd ... -CCI-Hull/

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Feb 28, 2022 9:08 am
by Silvia
Good evening, kindly I would like to ask if you could convert 2 Tradingview pine script indicators into mql language for Mt4

The indicators are:
1) https://in.tradingview.com/script/GL9Ww ... th-Alerts/
IDEAL BB WITH MA (WITH ALERTS)


2) https://www.tradingview.com/script/TgF2 ... e-Impulse/
ELLIOT WAVE IMPULSE

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Tue Mar 01, 2022 7:30 pm
by ionone
A_5 wrote: Tue Feb 15, 2022 4:42 pm Please can this be converted to mt4
https://www.tradingview.com/script/rvHV ... ck-Finder/
hey

ok so I looked at the code and the signals are amazing, but it is a repainter unfortunately
this is this code :
offset = -ob_period
it offsets all the signals in the future

sorry

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Mar 25, 2022 10:42 pm
by JNascente
Good Morning. Could you please convert fbb to mt4? thanks

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sat Mar 26, 2022 12:43 am
by Jimmy
JNascente wrote: Fri Mar 25, 2022 10:42 pm Good Morning. Could you please convert fbb to mt4? thanks
No, because it already exists here: Fibonacci Bollinger Bands MT4.

Please make an effort to search through our site next time. And if you're looking for something in particular, you can also deep search Forex-station, too.

RSI OTT

Posted: Sun Mar 27, 2022 1:57 am
by ionone
RSI OTT


I can't find my error...

this looks like a killer indi

RSI OTT is Anıl Özekşi's latest derived version of Optimized Trend Tracker on RSI Oscillator.
He can solve the fake signals of RSI Oscillator by adopting OTT on the indicator.
Those who don't know OTT can search in indicators.

Re: RSI OTT

Posted: Sun Mar 27, 2022 8:02 pm
by Jimmy
ionone wrote: Sun Mar 27, 2022 1:57 am RSI OTT

I can't find my error...

this looks like a killer indi

RSI OTT is Anıl Özekşi's latest derived version of Optimized Trend Tracker on RSI Oscillator.
He can solve the fake signals of RSI Oscillator by adopting OTT on the indicator.
Those who don't know OTT can search in indicators.
Thanks for re-posting it Jeff. I've cleaned the topic and updated your original post with the new one as this one is working.

Interesting, I've just been reading up on it and OTT stands for Optimized Trend Tracker.
After comparing it to the tradingview one, this MT4 one seems a bit harder to decipher as the lines are a bit squished together.

I wonder if it's the same? Or is your code using Chande's CMO for calculation "somewhere"? ;)

Maybe Mrtools can take a look at it, too, if he's free later. The code on TV is:

Code: Select all

//@version=4
//created by    : @Anil_Ozeksi
//developer     : @Anil_Ozeksi
//author        : @mr. fofenks

study("RISOTTO",overlay=false, precision=2)


src               = close

//RSI
x1                = input(defval = 100      , title = "VAR RSI Period"          , type = input.integer, minval = 1  ,step = 1       , group = "VAR RSI")

//OTT
x2                = input(defval = 50       , title = "RISOTTO Period"          , type = input.integer, minval = 1  ,step = 1       , group = "RISOTTO")
x3                = input(defval = 0.2      , title = "RISOTTO Percent"         , type = input.float  , minval = 0  ,step = 0.05    , group = "RISOTTO")

//Signals
showsignalsc      = input( defval=false     , title = "Show RSI/OTT Crossing Signals?", type=input.bool)

OTT_Func(src,length, percent)=>
    valpha        = 2/(length+1)
    vud1          = src>src[1] ? src-src[1] : 0
    vdd1          = src<src[1] ? src[1]-src : 0
    vUD           = sum(vud1,9)
    vDD           = sum(vdd1,9)
    vCMO          = nz((vUD-vDD)/(vUD+vDD))
    VAR           = 0.0
    VAR          := nz(valpha*abs(vCMO)*src)+(1-valpha*abs(vCMO))*nz(VAR[1])
    fark          = VAR*percent*0.01//multi*atr //
    longStop      = VAR - fark
    longStopPrev  = nz(longStop[1], longStop)
    longStop     := VAR > longStopPrev ? max(longStop, longStopPrev) : longStop
    shortStop     = VAR + fark
    shortStopPrev = nz(shortStop[1], shortStop)
    shortStop    := VAR < shortStopPrev ? min(shortStop, shortStopPrev) : shortStop
    dir           = 1
    dir          := nz(dir[1], dir)
    dir          := dir == -1 and VAR > shortStopPrev ? 1 : dir == 1 and VAR < longStopPrev ? -1 : dir
    MT            = dir==1 ? longStop: shortStop
    OTT           = VAR>MT ? MT*(200+percent)/200 : MT*(200-percent)/200
    [VAR,OTT]

rsi               = rsi(src,x1)

[VRSI,_]          = OTT_Func(rsi, x2, 1)
[_,RISOTTO]       = OTT_Func(VRSI+1000, 2, x3)

buySignalc        = crossover(VRSI+1000, RISOTTO[2])
sellSignallc      = crossunder(VRSI+1000, RISOTTO[2])

plot(VRSI+1000         , color=#0585E1     , linewidth=2, title="VAR RSI" , display = display.all)
plot(nz(RISOTTO[2])    , color=#B800D9     , linewidth=2, title="RISOTTO" , display = display.all)


plotshape(buySignalc    and showsignalsc ? RISOTTO*0.995 : na, title="Buy"  , text="Buy"    , location=location.absolute, style=shape.labelup   , size=size.tiny, color=color.green , textcolor=color.white)
plotshape(sellSignallc  and showsignalsc ? RISOTTO*1.005 : na, title="Sell" , text="Sell"   , location=location.absolute, style=shape.labeldown , size=size.tiny, color=color.red   , textcolor=color.white)

//alertcondition(cross(src, OTT[2]), title="Price Cross Alert", message="OTT - Price Crossing!")
//alertcondition(crossover(src, OTT[2]), title="Price Crossover Alarm", message="PRICE OVER OTT - BUY SIGNAL!")
//alertcondition(crossunder(src, OTT[2]), title="Price Crossunder Alarm", message="PRICE UNDER OTT - SELL SIGNAL!")

  
  

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Mar 28, 2022 10:39 am
by JNascente
Jimmy wrote: Sat Mar 26, 2022 12:43 am No, because it already exists here: Fibonacci Bollinger Bands MT4.

Please make an effort to search through our site next time. And if you're looking for something in particular, you can also deep search Forex-station, too.

thanks