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 arvidvanstaey, Today, 02:19 PM
        4 responses
        11 views
        0 likes
        Last Post arvidvanstaey  
        Started by samish18, 04-17-2024, 08:57 AM
        16 responses
        60 views
        0 likes
        Last Post samish18  
        Started by jordanq2, Today, 03:10 PM
        2 responses
        9 views
        0 likes
        Last Post jordanq2  
        Started by traderqz, Today, 12:06 AM
        10 responses
        18 views
        0 likes
        Last Post traderqz  
        Started by algospoke, 04-17-2024, 06:40 PM
        5 responses
        47 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Working...
        X