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

Plot code printing a line not a bar

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

    Plot code printing a line not a bar

    Hi,

    In my code I am adding a plot with a style of a bar, but the chart is changing this to a line, when I right click the chart and select indicators and then look for the options on this indicator, their is no plot option call Volume Bar.

    What have I deleted not to get that option

    Thanks

    Tinkerz


    Code:
                Add(new Plot(Color.FromKnownColor(KnownColor.Lime), PlotStyle.Bar, "VolumeBar"));

    Code:
            #region Properties
            [Browsable(false)]    // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
            [XmlIgnore()]        // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
            public DataSeries VolumeBar
            {
                get { return Values[0]; }
            }

    #2
    Hello Tinkerz,

    Thank you for your post.

    Have you set the values for the plot? How many plots are set?

    For information on .Set please visit the following link for information on the DataSeries class: http://www.ninjatrader.com/support/h...ries_class.htm

    Comment


      #3
      Yes I get values plotting but in line not a bar

      Thanks

      Comment


        #4
        Hello Tinkerz,

        Thank you for your response.

        Do you have multiple Plots in your indicator?

        If so, please go to the Properties section of your code and make sure the Values are set appropriately (0, 1, 2, etc.). For information on the Plot please visit the following link: http://www.ninjatrader.com/support/h...plot_class.htm

        If this does not resolve the matter please attach your code to your response or a toy version. If you prefer you can send the file to support[at]ninjatrader[dot]com with 'ATTN: Patrick - 860657' in the subject line and a reference to this thread in the body of the e-mail: http://www.ninjatrader.com/support/f...ad.php?t=58323

        Please let me know if I may be of further assistance.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by bortz, 11-06-2023, 08:04 AM
        47 responses
        1,610 views
        0 likes
        Last Post aligator  
        Started by jaybedreamin, Today, 05:56 PM
        0 responses
        9 views
        0 likes
        Last Post jaybedreamin  
        Started by DJ888, 04-16-2024, 06:09 PM
        6 responses
        19 views
        0 likes
        Last Post DJ888
        by DJ888
         
        Started by Jon17, Today, 04:33 PM
        0 responses
        6 views
        0 likes
        Last Post Jon17
        by Jon17
         
        Started by Javierw.ok, Today, 04:12 PM
        0 responses
        16 views
        0 likes
        Last Post Javierw.ok  
        Working...
        X