Page 35 of 66

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Nov 03, 2023 2:45 am
by Jimmy
BeatlemaniaSA wrote: Fri Nov 03, 2023 2:40 am Haha, yeah my index finger got a bit of a workout on the scroll wheel of my mouse with that post :Rofl: :Rofl: :Rofl:
Same here man scrolling down I was like when does this end bro.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Tue Dec 05, 2023 2:43 pm
by RodrigoRT7
mrtools wrote: Sat Sep 02, 2023 8:47 am Follow The Line indicator + Angle Of Attack for MT4

Not really sure how close to the TradingView versions these are, but made a Follow the line and an angle of follow the line, seems to work ok, just not sure how close to the originals these are.
Image
Hello Mr Tools, how are you? I had the impression I mentioned about this indicator before, but I didn't find my own post.

I would like to suggest the MTF function in this indicator and the inclusion of new averages if possible, it has a similar behavior to the half trend :D

Maybe I posted twice, in which case I apologize in advance...

thank you very much!!

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Wed Dec 06, 2023 4:26 am
by mrtools
RodrigoRT7 wrote: Tue Dec 05, 2023 2:43 pm Hello Mr Tools, how are you? I had the impression I mentioned about this indicator before, but I didn't find my own post.

I would like to suggest the MTF function in this indicator and the inclusion of new averages if possible, it has a similar behavior to the half trend :D

Maybe I posted twice, in which case I apologize in advance...

thank you very much!!
Follow The Line indicator with MTF (Multi-timeframe) mode

Mtf added. How are you using this in your trading?

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Wed Dec 06, 2023 4:41 am
by RodrigoRT7
mrtools wrote: Wed Dec 06, 2023 4:26 am Mtf added. How are you using this in your trading?
Image
Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Wed Dec 06, 2023 9:37 am
by kenshin281180#
RodrigoRT7 wrote: Wed Dec 06, 2023 4:41 am Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!
Good Sir would it be possible for you to screenshot your indicator list and the settings for the psar you mentioned? Thanks in advance

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Wed Dec 06, 2023 12:27 pm
by RodrigoRT7
kenshin281180# wrote: Wed Dec 06, 2023 9:37 am Good Sir would it be possible for you to screenshot your indicator list and the settings for the psar you mentioned? Thanks in advance

for sure bro!! but STC need a lot of improvements

obs: There's no need to call me sir :)

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Dec 08, 2023 11:35 am
by opita
Request:
Engulfing Detector https://www.tradingview.com/script/ENKp ... nd-Demand/

This is a unique engulfing indicator, which I believe catches the essence of how to trade engulfing candles.
Creating this indicator can inspire additional indicators with similar strategies.

Code: Select all

//@version=4
study("Engulfing Detector", overlay=true, max_bars_back=500)

maxBarsBack = 500

previousRange = open[1] - close[1]

line bullEngulfOpen = na
line bullEngulfLow = na

line bearEngulfOpen = na
line bearEngulfHigh = na

isBullEngulf = previousRange > 0 and close > open[1]
isBearEngulf = previousRange < 0 and close < open[1]

if isBullEngulf
    bullEngulfOpen := line.new(bar_index - 1, open[1], bar_index, open[1], extend=extend.right, color=color.green)
    bullEngulfLow := line.new(bar_index - 1, low < low[1] ? low : low[1], bar_index, low < low[1] ? low : low[1], extend=extend.right, color=color.red)

if isBearEngulf
    bearEngulfOpen := line.new(bar_index - 1, open[1], bar_index, open[1], extend=extend.right, color=color.green)
    bearEngulfHigh := line.new(bar_index - 1, high > high[1] ? high : high[1], bar_index, high > high[1] ? high : high[1], extend=extend.right, color=color.red)


var maxNumberOfEngulfings = 10
bullEngulfingCount = 0
for i = 1 to maxBarsBack
    if not na(bullEngulfOpen[i])
        if low < line.get_y1(bullEngulfLow[i])
            line.delete(bullEngulfOpen[i])
            line.delete(bullEngulfLow[i])
            continue
        if low < line.get_y1(bullEngulfOpen[i])
            //line.set_x2(bullEngulfOpen[i], bar_index)
            line.set_color(bullEngulfOpen[i], color.gray)
            //line.set_extend(bullEngulfOpen[i], extend.none)
            //line.set_x2(bullEngulfLow[i], bar_index)
            line.set_color(bullEngulfLow[i], color.gray)
            //line.set_extend(bullEngulfLow[i], extend.none)
            
        bullEngulfingCount := bullEngulfingCount + 1
        if bullEngulfingCount > maxNumberOfEngulfings
            line.delete(bullEngulfOpen[i])
            line.delete(bullEngulfLow[i])
            
bearEngulfingCount = 0
for i = 1 to maxBarsBack   
    if not na(bearEngulfOpen[i])
        if high > line.get_y1(bearEngulfHigh[i])
            line.delete(bearEngulfOpen[i])
            line.delete(bearEngulfHigh[i])
            continue
        
        if high > line.get_y1(bearEngulfOpen[i])
            //line.set_x2(bearEngulfOpen[i], bar_index)
            line.set_color(bearEngulfOpen[i], color.gray)
            //line.set_extend(bearEngulfOpen[i], extend.none)
            //line.set_x2(bearEngulfHigh[i], bar_index)
            line.set_color(bearEngulfHigh[i], color.gray)
            //line.set_extend(bearEngulfHigh[i], extend.none)
            
        bearEngulfingCount := bearEngulfingCount + 1
        if bearEngulfingCount > maxNumberOfEngulfings
            line.delete(bearEngulfOpen[i])
            line.delete(bearEngulfHigh[i])

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Dec 08, 2023 11:41 am
by opita
RodrigoRT7 wrote: Wed Dec 06, 2023 4:41 am Thank you very much, Mr tools! This graph was confusing because it is just a test graph. But as a rule of thumb I use the 2 X MA Psar (candles) with Follow the line or half trend as a secondary confirmation indicator. Also, I really like STC as a primary indicator. The FTL averaged by Jurik default settings is the 2xMa PSAR at 7 X 21 EMA (H1) PSAR Jurik. Thank you very much for this indicator!!
That is quite a unique setup you got, do you use M30 as your main chart?

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Dec 08, 2023 1:15 pm
by RodrigoRT7
opita wrote: Fri Dec 08, 2023 11:41 am That is quite a unique setup you got, do you use M30 as your main chart?
Hello Opita!! That's right, I usually use the M15 or M30. These are the indicators I'm using in brainstorming.

I really like the avg z score also as a counter trend.

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Dec 11, 2023 9:20 am
by chris006
RTI (Relative Trend Index) from TradingView for MT4

An early Christmas gift for everyone: the TradingView RTI in MT4

@mrtools @kvak
I have faith in you both.. please let us have your magic..
mrtools wrote: Mon Jul 31, 2023 5:27 am Coded a version, came out terrible, we have an ArraySort function in meta trader but no Array.new or Array.Push and no idea how to code around them, sorry!
kvak wrote: Sun Jul 30, 2023 7:01 pm I was trying it yesterday, but it is look that some lines in code Iam not able to convert....
TransparentTrader wrote: Wed Nov 22, 2023 7:42 am So what now? Still no chance of having this ported to MT4?
xard777 wrote: Sat Jul 29, 2023 8:47 am Have a great weekend everyone...
Xard777
Image