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

how to code thicker indicator plots

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

    how to code thicker indicator plots

    AddPlot(Brushes.Green, "LongUpper");

    what need to be added to this to change the brushed font size form default of 1 to something thicker

    #2
    Hello DTSSTS,

    Thanks for your post.

    This can be changed from the Width property of the plot.

    Plots[0].Width = 100;



    We look forward to assisting.
    JimNinjaTrader Customer Service

    Comment


      #3
      the strategy does not have an input like an indicator IT just says to AddPlot(Brushes.Green, "LongUpper");

      so some where in between the ( ) another input of some type

      Comment


        #4
        Hello DTSSTS,

        You can check the AddPlot documentation to see the overloads which are available.

        AddPlot - https://ninjatrader.com/support/help...8/?addplot.htm

        If you want to specify width with the Plot's Stroke, you could do as follows:

        AddPlot(new Stroke(Brushes.Orange, 100), PlotStyle.Line, "MyPlot");

        Did you try the code I provided in post #2?

        I have attached a screenshot showing my results.

        We look forward to assisting.
        Attached Files
        JimNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by warreng86, 11-10-2020, 02:04 PM
        5 responses
        1,355 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by Perr0Grande, Today, 08:16 PM
        0 responses
        3 views
        0 likes
        Last Post Perr0Grande  
        Started by elderan, Today, 08:03 PM
        0 responses
        5 views
        0 likes
        Last Post elderan
        by elderan
         
        Started by algospoke, Today, 06:40 PM
        0 responses
        10 views
        0 likes
        Last Post algospoke  
        Started by maybeimnotrader, Today, 05:46 PM
        0 responses
        12 views
        0 likes
        Last Post maybeimnotrader  
        Working...
        X