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

Hide Label for Second Plot

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

    Hide Label for Second Plot

    How can I hide the label of just my second plot? For example:

    Code:
    //I want the label to show on this first plot but not the second. How?
    AddPlot(new Stroke(Brushes.Black), PlotStyle.Bar, "RelativeVolume");
    AddPlot(new Stroke(Brushes.Red), PlotStyle.Bar, "VolumeIndicator");

    #2
    Hello swcooke,

    Thank you for your post.

    Please confirm: Do you mean you don't want the second plot to show up in the Indicators property grid when you are changing the indicators settings?

    I look forward to your reply.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      I am referring to the price marker in the scale. The second plot is just a fixed line at the 100 level. I don't need a price marker for that. How do I turn off the price marker for just the second plot?

      Comment


        #4
        Hello swcooke,

        Thank you for your reply.

        AddLine() can be used for that purpose. Call AddLine in State.SetDefaults and it will add a line at the numeric value.

        Code:
        if (State == State.SetDefaults)
        {
        
            ...
            AddLine(Brushes.Blue, 100, "MyPriceLine");
            ....
        }
        If you do need to use a plot, you would need to render the line using SharpDX in the OnRender method. More reading on that subject below:


        Please let me know if I can assist any further.
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by funk10101, Today, 09:43 PM
        0 responses
        6 views
        0 likes
        Last Post funk10101  
        Started by pkefal, 04-11-2024, 07:39 AM
        11 responses
        37 views
        0 likes
        Last Post jeronymite  
        Started by bill2023, Yesterday, 08:51 AM
        8 responses
        44 views
        0 likes
        Last Post bill2023  
        Started by yertle, Today, 08:38 AM
        6 responses
        26 views
        0 likes
        Last Post ryjoga
        by ryjoga
         
        Started by algospoke, Yesterday, 06:40 PM
        2 responses
        24 views
        0 likes
        Last Post algospoke  
        Working...
        X