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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      656 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      371 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      109 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      574 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      579 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X