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 helpwanted, Today, 03:06 AM
        0 responses
        3 views
        0 likes
        Last Post helpwanted  
        Started by Brevo, Today, 01:45 AM
        0 responses
        6 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        5 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        242 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Working...
        X