Conversion of TradingView indicator to MT5

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #240869 quote
    lukapexlukapex
    Participant
    New

    hello! thank you in advance!
    i combined a few indicators, to make indicator that outlines FVGs and Fractals. I would love to have it converted to mt5! Thank you in advance! i have more of them, think we can help each other out!

    //@version=5
    indicator(‘Moj FVG i Fractals’, overlay = true)
    // === FVG Inputs ===
    fvg_border_color = input.color(color.yellow, “FVG Border Color”)
    fvg_bg_color = input.color(color.new(color.yellow, 90), “FVG Bg Color”)
    fvg_bar_color = input.color(color.yellow, “FVG Bar Color”)
    // === FVG Logic ===
    fvg_up_gap = close[1] > open[1] ? low – high[2] : na
    fvg_down_gap = close[1] < open[1] ? low[2] – high : na
    fvg_up_box = fvg_up_gap > 0 ? box.new(left = bar_index[2], top = high[2], right = bar_index, bottom = low, border_color = fvg_border_color, bgcolor = fvg_bg_color) : na
    fvg_down_box = fvg_down_gap > 0 ? box.new(left = bar_index[2], top = low[2], right = bar_index, bottom = high, border_color = fvg_border_color, bgcolor = fvg_bg_color) : na
    // === Bar Colors for FVG ===
    barcolor(fvg_up_gap > 0 ? fvg_bar_color : na, offset = -1)
    barcolor(fvg_down_gap > 0 ? fvg_bar_color : na, offset = -1)
    // === Fractal Inputs ===
    showPatterns = input(true, “Show Fractal Patterns”)
    filterBW = input(false, title=”Bill Williams Fractals Filter”)
    // === Fractal Recognition Functions ===
    isRegularFractal(mode) =>
        mode == 1 ? high[4] < high[3] and high[3] < high[2] and high[2] > high[1] and high[1] > high[0] :mode == -1 ? low[4] > low[3] and low[3] > low[2] and low[2] < low[1] and low[1] < low[0] : false
    isBWFractal(mode) =>
        mode == 1 ? high[4] < high[2] and high[3] <= high[2] and high[2] >= high[1] and high[2] > high[0] :mode == -1 ? low[4] > low[2] and low[3] >= low[2] and low[2] <= low[1] and low[2] < low[0] : false
    filteredtopf = filterBW ? isRegularFractal(1) : isBWFractal(1)
    filteredbotf = filterBW ? isRegularFractal(-1) : isBWFractal(-1)
    // === Plot Fractals ===
    plotshape(filteredtopf, title=’Filtered Top Fractals’, style=shape.triangledown, location=location.abovebar, color=color.red, offset=-2)
    plotshape(filteredbotf, title=’Filtered Bottom Fractals’, style=shape.triangleup, location=location.belowbar, color=color.green, offset=-2)
    #240873 quote
    JC_BywanJC_Bywan
    Moderator
    Master

    Hello,

    code conversion on ProRealCode forums is free towards ProRealTime platform only, but not free towards other platforms. For paid code conversions towards another platform, you might be interested in getting a quote from the trading programming services section in the “help” menu above, direct link: https://www.prorealcode.com/trading-programming-services/

    Best regards

    #240888 quote
    lukapexlukapex
    Participant
    New

    oh ok, thanks

    #240956 quote
    KumoNoJuzzaKumoNoJuzza
    Participant
    New

    Hi,

    Why not also converting it to Pro Order ? Is it possible?

    Thanks

    #240973 quote
    lukapexlukapex
    Participant
    New

    because i trade on mt5, i dont know how would i use proreal code? also i made better version of this indicator

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Conversion of TradingView indicator to MT5


ProBuilder: Indicators & Custom Tools

New Reply
Author
author-avatar
lukapex @lukapex Participant
Summary

This topic contains 4 replies,
has 3 voices, and was last updated by lukapexlukapex
1 year, 9 months ago.

Topic Details
Forum: ProBuilder: Indicators & Custom Tools
Language: English
Started: 11/28/2024
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...