Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Please build a Murrey Math indicator for NT8

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Please build a Murrey Math indicator for NT8

    Please convert the Murrey Math indicator from NT7 into NT8.
    Thanks
    RMillar

    #2
    I agree completely. I have been wanting someone to convert this from 7 to 8 for at least six months. The NT7 version is great!

    Comment


      #3
      Hello rmillar & BruceK,

      Thank you for your posts.

      Can you provide a link to the NinjaTrader 7 version of the indicator?

      I look forward to your response.

      Comment


        #4
        Hi There,

        Is there anyone in here that can create the following indicators... this is a complete trading strategy.

        I have the script from Trading View, but have no idea on how to translate them into NT7 or NT8.

        the followings are the scripts and the image of how they look in TradingView:

        Murrey Math Levels:

        // Specify a starting price, then an interval and Lookback window.
        // The indicator will then plot a moving window of murrey math levels.

        study(title="LAX Murray Math Levels", shorttitle="LAX_MML", precision=5, overlay=true)

        //Inputs
        stPrice = input(1.2300, minval=1, title="StartingPrice")
        pipInterval = input(125, minval=1, title="Interval in Pips")
        lookbackWin = input(64, minval=28, title="Lookback window")

        //Calculate precision
        mult = .00001
        incr = pipInterval * mult
        mid1 = 0.0000
        top1 = 0.0000
        bot1 = 0.0000
        mid2 = 0.0000
        top2 = 0.0000
        bot2 = 0.0000

        decimals = abs(log(syminfo.mintick) / log(10))
        if decimals == 3
        mult = .001

        //plot(series=decimals, color=blue)

        if barstate.isfirst
        mid1:=stPrice
        else
        if highest(high, lookbackWin) >= (mid1 + incr)
        mid1:= highest(high, lookbackWin)

        //Plot
        m1 = plot(mid1, color= mid1 != mid1[1] ? na : red, title="m1", style=line, linewidth=2)
        t1 = plot(mid1 + incr, color = mid1 != mid1[1] ? na : red, title="t1", style=line, linewidth=2)
        b1 = plot(mid1 - incr, color = mid1 != mid1[1] ? na : red, title="b1", style=line, linewidth=2)

        mid2:=mid1
        if lowest(low, lookbackWin) <= (mid2 - incr)
        mid2:= lowest(low, lookbackWin)

        m2 = plot(mid2, color = mid2 != mid2[1] ? na : red, title="m2", style=line, linewidth=2)
        t2 = plot(mid2 + incr, color = mid2 != mid2[1] ? na : red, title="t2", style=line, linewidth=2)
        b2 = plot(mid2 - incr, color = mid2 != mid2[1] ? na : red, title="b2", style=line, linewidth=2)


        Murrey Math Channel:

        study(title="[RS]Murrey's Math Lines Channel", shorttitle="[RS]MMLC", overlay=true)
        length00 = input(100)
        fmultiplier = input(defval=0.125, type=float)
        hhi = highest(high, length00)
        llo = lowest(low, length00)
        fraction = (hhi - llo) * fmultiplier
        midline = llo + fraction * 4
        plot(midline, color=gray, linewidth=3)
        plot(midline + fraction * 1, color=gray)
        plot(midline + fraction * 2, color=gray)
        p00 = plot(midline + fraction * 3, color=gray, linewidth=1)
        p01 = plot(midline + fraction * 4, color=gray, linewidth=2)
        plot(midline - fraction * 1, color=gray)
        plot(midline - fraction * 2, color=gray)
        p02 = plot(midline - fraction * 3, color=gray, linewidth=1)
        p03 = plot(midline - fraction * 4, color=gray, linewidth=2)

        fill(p00, p01, color=gray, transp=50)
        fill(p02, p03, color=gray, transp=50)
        Last edited by TradingWarrior; 05-23-2019, 10:59 PM.

        Comment


          #5
          Here is the screenshot
          Attached Files

          Comment


            #6
            Hello TradingWarrior,

            Thanks for your post and welcome to the Ninjatrader forums!

            If no members offer to create the indicator for you, we can provide references to 3rd party programmers who would be happy to provide that service.
            Paul H.NinjaTrader Customer Service

            Comment


              #7
              Here is a good implementation of Murrey Math: MMlinesProPlus
              The NT8 version can be supplied after the NT7 version purchase.

              Dan
              eDanny
              NinjaTrader Ecosystem Vendor - Integrity Traders

              Comment


                #8
                Hi All,
                Can someone tell me how to get a free version of Murrey Math Lines for NT7?

                Thanks

                Comment


                  #9
                  Hello Dennis M,

                  Thanks for your post and welcome to the NinjaTrader forums!

                  You might check the first post in this thread: https://ninjatrader.com/support/foru...math-indicator
                  Paul H.NinjaTrader Customer Service

                  Comment


                    #10
                    Originally posted by NinjaTrader_PatrickH View Post
                    Hello rmillar & BruceK,

                    Thank you for your posts.

                    Can you provide a link to the NinjaTrader 7 version of the indicator?

                    I look forward to your response.
                    Hi Patrick

                    here is the Link for the NT7 version



                    It would be great if you could translate that into NT8

                    Comment


                      #11
                      Originally posted by AGL-PL View Post

                      Hi Patrick

                      here is the Link for the NT7 version



                      It would be great if you could translate that into NT8
                      Try the attached for NT8--converted NT7 version MurreyMathNT7.zip

                      Comment

                      Latest Posts

                      Collapse

                      Topics Statistics Last Post
                      Started by CortexZenUSA, Today, 12:53 AM
                      0 responses
                      1 view
                      0 likes
                      Last Post CortexZenUSA  
                      Started by CortexZenUSA, Today, 12:46 AM
                      0 responses
                      1 view
                      0 likes
                      Last Post CortexZenUSA  
                      Started by usazencortex, Today, 12:43 AM
                      0 responses
                      5 views
                      0 likes
                      Last Post usazencortex  
                      Started by sidlercom80, 10-28-2023, 08:49 AM
                      168 responses
                      2,266 views
                      0 likes
                      Last Post sidlercom80  
                      Started by Barry Milan, Yesterday, 10:35 PM
                      3 responses
                      13 views
                      0 likes
                      Last Post NinjaTrader_Manfred  
                      Working...
                      X