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

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 Max238, Today, 01:28 AM
    1 response
    23 views
    0 likes
    Last Post CactusMan  
    Started by giulyko00, Yesterday, 12:03 PM
    2 responses
    10 views
    0 likes
    Last Post giulyko00  
    Started by r68cervera, Today, 05:29 AM
    0 responses
    4 views
    0 likes
    Last Post r68cervera  
    Started by geddyisodin, Today, 05:20 AM
    0 responses
    7 views
    0 likes
    Last Post geddyisodin  
    Started by JonesJoker, 04-22-2024, 12:23 PM
    6 responses
    38 views
    0 likes
    Last Post JonesJoker  
    Working...
    X