Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT Not Re-Generating Correct Code

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

    NT Not Re-Generating Correct Code

    I came across a bug: NT is not generating it's code correctly when a property is deleted.

    Steps to reproduce:

    - Run the new Indicator wizard; and just hit "Next" until the indicator is generated, with the default parameters.
    - Compile.
    - Delete the properties, plots, etc. so the indi now looks as below (and in the attached file).
    - Compile.

    NT will not update it's generated code to remove the deleted elements; and so will not compile the edited indi.

    This is the code I stripped down once generating and compiling the default indi (the same as in the attached file):

    Code:
    using System;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Drawing;
    using System.Drawing.Drawing2D;
    using System.Xml.Serialization;
    using NinjaTrader.Cbi;
    using NinjaTrader.Data;
    using NinjaTrader.Gui.Chart;
    
    namespace NinjaTrader.Indicator
    {
        public class MyCustomIndicator : Indicator
        {
            protected override void Initialize()
            {
            }
    
            protected override void OnBarUpdate()
            {
            }
        }
    }
    Attached Files

    #2
    steevcoco,

    This is because the [Description()] was deleted and the generated code wasn't able to register the variables as part of it.

    I tested this thoroughly on my end and was able to delete everything besides the Description and get it to compile.
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    605 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    351 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    560 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    561 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X