Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Labelled lines

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

    Labelled lines

    Just a little feedback for the author (NT staff, I believe).

    To prevent unhandled 'null' errors (object reference not set to an instance of an object), labeled lines onRender needs to be updated with the following (or some equivalent), because you will still get an "NinjaTrader.NinjaScript.DrawingTools.DrawingTool. **GetAttachedToChartBars**(...) returned null." error with the current null detection

    Code:
            public override void OnRender(ChartControl chartControl, ChartScale chartScale)
            {
                base.OnRender(chartControl, chartScale);
    
                Stroke.RenderTarget         = RenderTarget;
                OutlineStroke.RenderTarget    = RenderTarget;
    
    [I]            try
                {
                    if (GetAttachedToChartBars().Bars.Instrument.MasterInstrument == null)
                        return;
                }
                catch
                {
                    return;
                }[/I]
    Regards,

    Paul

    #2

    Try this instead

    Code:
    ChartBars tcbs = AttachedTo.ChartObject as ChartBars;
    if(tcbs == null) { Print("ChartBar Problem"); return; }


    -=Edge=-
    NinjaTrader Ecosystem Vendor - High Tech Trading Analysis

    Comment


      #3
      Thank you, Sir! Have a great weekend.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Barry Milan, Today, 10:35 PM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by WeyldFalcon, 12-10-2020, 06:48 PM
      14 responses
      1,427 views
      0 likes
      Last Post Handclap0241  
      Started by DJ888, Yesterday, 06:09 PM
      2 responses
      9 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by jeronymite, 04-12-2024, 04:26 PM
      3 responses
      40 views
      0 likes
      Last Post jeronymite  
      Started by bill2023, Today, 08:51 AM
      2 responses
      16 views
      0 likes
      Last Post bill2023  
      Working...
      X