fxDreema

    • Register
    • Login
    • Search
    • Back to the main page
    • Categories
    • Recent
    • Tags
    • Popular
    • Search

    How to transform an simple indicator of TradingView to MT4 pls

    Questions & Answers
    0
    3
    587
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • H
      HHHung94 last edited by

      I have this indicator on TradingView,
      It's help me to detect when the BB open and start a momentum of BB break.
      So How to transform it to MT4 and combine it with my BOT i have used.
      Thank so much.

      //@version=3
      study("BBW-Squeeze alerts", overlay=false)
      src= input(close, title="Source")
      highlightBBW = input(20, title="Highlight BBW under%")
      LowestBBW = input(180, title= "Lowest")
      BBlength = input(20, title="Bollinger Band Length")
      BBmult = input(2.0, minval=0.001, maxval=50,title="Bollinger Bands Standard Deviation")
      BBbasis = sma(close, BBlength)
      BBdev = BBmult * stdev(close, BBlength)
      BBupper = BBbasis + BBdev
      BBlower = BBbasis - BBdev
      BBW = ((BBupper - BBlower)) / BBbasis * 100
      lowBBW = lowest(BBW,LowestBBW)
      plot(BBW, title = "Bollinger Bandwidth", color = blue)
      colorpick = BBW < highlightBBW and BBW > lowBBW[1] ? color(yellow, 80) : BBW < lowBBW[1] ? color(green,60) : na
      bgcolor(colorpick)
      plot(lowBBW[1], title="Lowest Bollinger bandwidth", color = red)

      l'andorrà A 2 Replies Last reply Reply Quote 0
      • l'andorrà
        l'andorrà @HHHung94 last edited by

        @hhhung94 You need to import it into your fxDreema account as detailed here:

        https://fxdreema.com/documentation/builder/indicators

        Please read the second half of that page at the section called 'How To Use Custom Indicators In FxDreema?'

        (English) I will try to help everyone in these fxDreema forums. But if you want to learn how to use the platform in depth or more quickly, I can help you with my introductory fxDreema course in English at https://www.theandorraninvestor.eu.

        (Català) Miraré d’ajudar tothom en aquests fòrums d’fxDreema. Tanmateix, si vols aprendre a fer servir la plataforma amb més profunditat o més de pressa, t’hi puc ajudar amb el meu curs d’introducció a fxDeema en català a https://www.theandorraninvestor.eu/ca.

        (Español) Intentaré ayudar a todo el mundo en estos foros de fxDreema. Sin embargo, si quieres aprender a usar la plataforma en profundidad o más deprisa, te puedo ayudar con mi curso de introducción a fxDreema en español en https://www.theandorraninvestor.eu/es.

        1 Reply Last reply Reply Quote 1
        • A
          ambrogio @HHHung94 last edited by

          @hhhung94 Trading View tools are written in proprietary Pine Script language, so you should hire a programmer to convert it to mql4 language, or maybe find a similar indicator in mql4

          1 Reply Last reply Reply Quote 1
          • 1 / 1
          • First post
            Last post

          Online Users

          O
          S
          E
          J
          D
          M
          X
          K
          E
          D
          M

          28
          Online

          146.6k
          Users

          22.4k
          Topics

          122.6k
          Posts

          Powered by NodeBB Forums | Contributors