Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Problem with 'Type' in modified Code.

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

    Problem with 'Type' in modified Code.

    I' modifying a Script and I have an ENUM specified by,
    #region Enums
    public enum DALadderEnum
    {
    BidAsk,
    VolumeDelta
    }
    under PROPERTIES
    #region BID ASK LADDER PROPERTIES
    [NinjaScriptProperty]
    [Display(Name="LADDER Type", Description="Shows either BID/ASK VOLUME or DELTA/VOLUME", Order=1, GroupName = "3. DA LADDER Properties")]
    public DALadderEnum DALadderType
    {
    get { return DALadderType; }
    set { DALadderType = value; }
    }
    I just changed the name globally from xyz to DALadder.

    I get an error message:
    The type 'NinjaTrader.NinjaScript.Indicators.MyIndicators.M yDA_Ladder' already contains a definition for 'DALadderType'
    It's Friday afternoon, been a long day and I'm missing something obvious. Any thoughts on why I'm getting this. All swas well prior to a simple change.

    #2
    Hello dmking,

    Thanks for your post.

    The error message indicates that the indicator MyDA_Ladder already contains a definition for DALadderType. This means it is likely that DALadderType is being defined twice in your script.

    In the NinjaScript Editor, use CTRL + F to bring up the Find window and search for DALadderType to see where it is being defined in the script. If you see DALadderType being defined twice, rename or remove one of the instances of DALadderType.

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment


      #3
      Thanks Brandon,

      I'll take a look.

      Comment

      Latest Posts

      Collapse

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