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 algospoke, Yesterday, 06:40 PM
        2 responses
        20 views
        0 likes
        Last Post algospoke  
        Started by ghoul, Today, 06:02 PM
        3 responses
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        45 views
        0 likes
        Last Post jeronymite  
        Started by Barry Milan, Yesterday, 10:35 PM
        7 responses
        21 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by AttiM, 02-14-2024, 05:20 PM
        10 responses
        181 views
        0 likes
        Last Post jeronymite  
        Working...
        X