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

fail to compile CS1061

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

    fail to compile CS1061

    There is a something wrong in this code, it fails to compile with CS1061. Something to do with the property? Just can't can't see the issue.

    Code:
    public class TestDoubleSeries : Indicator
    {
       private Series<double> doubleSeries;
    
       protected override void OnStateChange()
       {
           if (State == State.SetDefaults)
           {
              Description = @"why is this not compiling";
              Name = "TestDoubleSeries";
              Calculate = Calculate.OnBarClose;
              IsOverlay = false;
              DisplayInDataBox = true;
              DrawOnPricePanel = true;
              DrawHorizontalGridLines = true;
              DrawVerticalGridLines = true;
              PaintPriceMarkers = true;
              ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
              IsSuspendedWhileInactive = true;
           }
           else if (State == State.DataLoaded)
           {
              doubleSeries = new Series<double>(this, MaximumBarsLookBack.Infinite);
           }
       }
    
        protected override void OnBarUpdate()
        {
           doubleSeries[0] = 1.0;
        }
    
        #region Properties
        [Browsable(false)]
        [XmlIgnore]
        public Series<double> State
        {
           get { return doubleSeries; }
         }
        #endregion
    }

    #2
    Hello lavalampmj,

    Thank you for your post.

    The issue is calling your public property State, which is basically keeping the references to the actual indicator State in OnStateChange() from working.

    If you change it so the public series is just named DoubleSeries (uppercase D), that should work for you:

    Code:
    #region Properties
    [Browsable(false)]
    [XmlIgnore]
    public Series<double> DoubleSeries
    {
    get { return doubleSeries; }
    }
    #endregion
    Please let us know if we may be of further assistance to you.
    Kate W.NinjaTrader Customer Service

    Comment


      #3
      Thanks so much. Sometimes, you can't see "wood for the trees"!

      I now see that there is a Ninjascript.State property (used in the OnStateChange() method), so calling my public series also State was the problem....

      C# compiler was telling me this, by why so cryptic in the error message?

      Thanks
      Last edited by lavalampmj; 04-29-2021, 02:56 PM.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cls71, Today, 04:45 AM
      0 responses
      1 view
      0 likes
      Last Post cls71
      by cls71
       
      Started by mjairg, 07-20-2023, 11:57 PM
      3 responses
      213 views
      1 like
      Last Post PaulMohn  
      Started by TheWhiteDragon, 01-21-2019, 12:44 PM
      4 responses
      544 views
      0 likes
      Last Post PaulMohn  
      Started by GLFX005, Today, 03:23 AM
      0 responses
      3 views
      0 likes
      Last Post GLFX005
      by GLFX005
       
      Started by XXtrader, Yesterday, 11:30 PM
      2 responses
      12 views
      0 likes
      Last Post XXtrader  
      Working...
      X