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

RSI - plot & line removal !

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

    RSI - plot & line removal !

    Hello NT7 indicator development team

    On RSI how to remove line level and remove average plot? because on line level i made both same value then they merged into 1 line but on plot even i made average plot value = to rsi plot value they still appear 2 plots not 1 plot. so i need to remove average plot since it's noisy on screen.


    Best Wishes,
    Futureszone

    #2
    Without going into the code, you can set the plot color and line color to transparent in the normal indicator settings panel.

    Comment


      #3
      Originally posted by Tasker-182 View Post
      Without going into the code, you can set the plot color and line color to transparent in the normal indicator settings panel.
      Thank you for sharing that sounds nice and smart hack

      Comment


        #4
        Hi futureszone, thanks for writing in. In Initialize, you can comment out:

        Add(new Line(System.Drawing.Color.DarkViolet, 30, "Lower"));
        Add(new Line(System.Drawing.Color.YellowGreen, 70, "Upper"));

        Then to remove the avg plot, comment out everywhere it is calling "Avg.Set()"

        Kind regards.

        Chris L.NinjaTrader Customer Service

        Comment


          #5
          Originally posted by NinjaTrader_ChrisL View Post
          Hi futureszone, thanks for writing in. In Initialize, you can comment out:

          Add(new Line(System.Drawing.Color.DarkViolet, 30, "Lower"));
          Add(new Line(System.Drawing.Color.YellowGreen, 70, "Upper"));

          Then to remove the avg plot, comment out everywhere it is calling "Avg.Set()"

          Kind regards.
          Hello Chris

          Thanks for your feedback I will copy and save that coding comment for my strategy programmer.


          Many Thanks,
          Futureszone

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by alifarahani, Today, 09:40 AM
          6 responses
          27 views
          0 likes
          Last Post alifarahani  
          Started by Waxavi, Today, 02:10 AM
          1 response
          17 views
          0 likes
          Last Post NinjaTrader_LuisH  
          Started by Kaledus, Today, 01:29 PM
          5 responses
          13 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Started by Waxavi, Today, 02:00 AM
          1 response
          12 views
          0 likes
          Last Post NinjaTrader_LuisH  
          Started by gentlebenthebear, Today, 01:30 AM
          3 responses
          17 views
          0 likes
          Last Post NinjaTrader_Jesse  
          Working...
          X