Page 42 of 43

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Thu Mar 28, 2024 11:51 pm
by friend4you
moey_dw wrote: Thu Mar 28, 2024 9:32 pm Thanks friendly bro......
-u-no-post-link.gif
Don't you like reading more of my words?
I prefer these non repainting indicators:
For bands, look
post1295365861.html#p1295365861

As free system, I like
mt4-trading-systems-gifts-for-the-new-y ... 1295469953
As indicators
post1295469951.html#p1295469951

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Mar 31, 2024 1:38 am
by jeffx33
Hello dear coders, I hope everyone is having a good week end.
Could anyone please convert this awesome indicator from TV to mt4 that displays other time frame candle on the same chart?
Many thanks

https://www.tradingview.com/script/ZEzP ... e-Display/

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Apr 01, 2024 12:50 am
by Antonov
RodrigoRT7 wrote: Mon Mar 13, 2023 2:18 pm hello friend Wael007, how are you? always put an image so that our programmer friends know what it is about, because sometimes we have some related indicator :D
Please post the names of the indicators on screen. Pleeeaassseee

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Apr 01, 2024 1:46 pm
by RodrigoRT7
Antonov wrote: Mon Apr 01, 2024 12:50 am Please post the names of the indicators on screen. Pleeeaassseee
Hello Antonov, how are you? the indicator in the photo is the TMA same as it is in the code + Market Profile + Pivot Point

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Thu Apr 11, 2024 11:44 am
by nhatduyatv
Hello,
I known a Trading View indicator, Can anyone help me converter to MT4? Thank you

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Thu Apr 11, 2024 3:58 pm
by Jimmy
nhatduyatv wrote: Thu Apr 11, 2024 11:44 am Hello
Please follow the guidelines in Post #1. You may edit your last post to add the additional information if you'd still like us to take a look for you 👍

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Fri Apr 12, 2024 1:02 am
by GaeBolg
Hi. Can anyone convert sentiment range ma indicator to mt4 please?
Its a good signal indicator that allows us to see range market for filtering.

https://www.tradingview.com/script/LVsN ... hartPrime/

Code: Select all

//@version=5
indicator("Sentiment Range MA [ChartPrime]", overlay = true, timeframe = "", timeframe_gaps = false)

simple_filter(float source, int length, bool duel_filter)=>
    switch duel_filter
        false => ta.wma(source, length)
        true => ta.wma(ta.sma(source, length), length)

sr_ma(float source = close, int output_smoothing = 3, int trigger_smoothing = 1, int atr_length = 50, float multiplier = 1, string range_switch = "Body", bool duel_filter = false)=>
    candle_top = range_switch != "Body" ? high : math.max(open, close)
    candle_bottom = range_switch != "Body" ? low : math.min(open, close)

    smooth_top = ta.sma(candle_top, trigger_smoothing)
    smooth_bottom = ta.sma(candle_bottom, trigger_smoothing)

    tr = candle_top - candle_bottom
    atr = ta.sma(tr, atr_length)

    var float sr_ma = na
    var float current_range = na
    var float top_range = na
    var float bottom_range = na

    flag = smooth_top > top_range or smooth_bottom < bottom_range or na(current_range)

    if flag
        sr_ma := source
        current_range := atr * multiplier
        top_range := sr_ma + current_range
        bottom_range := sr_ma - current_range
        
    out = simple_filter(sr_ma, output_smoothing, duel_filter)
    smooth_top_range = simple_filter(top_range, output_smoothing, duel_filter)
    smooth_bottom_range = simple_filter(bottom_range, output_smoothing, duel_filter)

    [out, smooth_top_range, smooth_bottom_range]

source = input.source(close, "Source", group = "Settings")
output_smoothing = input.int(20, "Length", minval = 0, group = "Settings") + 1
use_double = input.bool(true, "Double Filter", group = "Settings")
smoothing = input.int(4, "Trigger Smoothing", minval = 0, group = "Settings") + 1
atr_length = input.int(200, "ATR Length", minval = 1, group = "Settings")
multiplier = input.float(6, "Range Multiplier", minval = 0, step = 0.125, group = "Settings")
range_switch = input.string("Body", "Range Style", ["Body", "Wick"], group = "Settings")

style = input.string("MA Direction", "Color Style", ["MA Direction", "MA Cross", "Solid"], group = "Color")
bullish_color = input.color(color.rgb(33, 255, 120), "Bullish Color", group = "Color")
bearish_color = input.color(color.rgb(255, 33, 33), "Bearish Color", group = "Color")

neutral_color = input.color(color.rgb(137, 137, 137), "Neutral Color", "This doubles as the solid color.", group = "Color")

[sr_ma, top_range, bottom_range] = sr_ma(source, output_smoothing, smoothing, atr_length, multiplier, range_switch, use_double)

var color ma_delta = na
var color ma_cross = na

plot_neutral = high > sr_ma and low < sr_ma
plot_bullish = low > sr_ma
plot_bearish = high < sr_ma

if plot_bullish 
    ma_cross := bullish_color

if plot_bearish
    ma_cross := bearish_color

if plot_neutral 
    ma_cross := neutral_color

ma_delta_neutral = sr_ma - nz(sr_ma[1]) == 0
ma_delta_bullish = sr_ma - nz(sr_ma[1]) > 0
ma_delta_bearish = sr_ma - nz(sr_ma[1]) < 0

if ma_delta_bullish
    ma_delta := bullish_color

if ma_delta_bearish
    ma_delta := bearish_color

if ma_delta_neutral 
    ma_delta := neutral_color

ma_color = style == "MA Cross"? ma_cross : style == "MA Direction" ? ma_delta : neutral_color

alpha = color.new(color.red, 100)

ma = plot(sr_ma, "SR MA", ma_color, 3)
top = plot(top_range, "Top Range", alpha)
bottom = plot(bottom_range, "Bottom Range", alpha)

fill(ma, top, top_value = top_range, bottom_value = sr_ma, bottom_color = color.new(ma_color, 82), top_color = alpha)
fill(ma, bottom, top_value = sr_ma, bottom_value = bottom_range, top_color = color.new(ma_color, 82), bottom_color = alpha)

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Apr 14, 2024 8:35 pm
by A_5
jeffx33 wrote: Sun Mar 31, 2024 1:38 am Hello dear coders, I hope everyone is having a good week end.
Could anyone please convert this awesome indicator from TV to mt4 that displays other time frame candle on the same chart?
Many thanks

https://www.tradingview.com/script/ZEzP ... e-Display/
There are mt4 variations of this indicator. Just search the forum. Talking from experience. I I have on my pc mt4. I'll post it, but I'm not with my pc at the moment

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Mon Apr 15, 2024 12:57 am
by A_5
jeffx33 wrote: Sun Mar 31, 2024 1:38 am Hello dear coders, I hope everyone is having a good week end.
Could anyone please convert this awesome indicator from TV to mt4 that displays other time frame candle on the same chart?
Many thanks

https://www.tradingview.com/script/ZEzP ... e-Display/
Go through them and hopefully you get what you needed

Re: Already Converted TradingView Indicators to MT4 Indicators

Posted: Sun Apr 28, 2024 10:04 pm
by dmnik
;)