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

I can only set 3 properties?

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

    I can only set 3 properties?

    Hi. aparently i can only set 3 properties. code looks like this
    Code:
            #region Properties
            [Browsable(false)]    // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
            [XmlIgnore()]        // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
            [GridCategory("Trend Definition"), Description("")]
            public double MAGap
            {
                get{return gap;}
                set{gap = Math.Max(2, value);}
            }
            
            [GridCategory("Trend Definition"), Description("")]
            public double Channel
            {
                get{return channel;}
                set{channel = Math.Max(2, value);}
            }
            [GridCategory("Trend MAs"), Description("")]
            public int SMAPeriod
            {
                get{return smaperiod;}
                set{smaperiod = value;}
            }
            [GridCategory("Trend MAs"), Description("")]
            public int EMAPeriod
            {
                get{return emaperiod;}
                set{emaperiod =  value;}
            }
            #endregion
    strange thing about it is, that its not and "linking" or typing error. because its always the first one that isnt working. i can copy the first one to the bottom of the thing and it works, tho then the now first one doesnt work any more, tho it worked before. very strange.

    #2
    Remove the "[Browsable(false)]"

    Comment


      #3
      worked.
      much thanks



      might aswell ask another question.
      i am currently drawing stuff via indicator on my chart. but the stuff im drawing is most often behind the actual bars rather then ontop of them.

      and ideas?

      Comment


        #4


        See above thread

        Comment


          #5
          thanks again

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by cmtjoancolmenero, Yesterday, 03:58 PM
          1 response
          17 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by benmarkal, Yesterday, 12:52 PM
          3 responses
          23 views
          0 likes
          Last Post NinjaTrader_Gaby  
          Started by helpwanted, Today, 03:06 AM
          1 response
          19 views
          0 likes
          Last Post sarafuenonly123  
          Started by Brevo, Today, 01:45 AM
          0 responses
          11 views
          0 likes
          Last Post Brevo
          by Brevo
           
          Started by pvincent, 06-23-2022, 12:53 PM
          14 responses
          244 views
          0 likes
          Last Post Nyman
          by Nyman
           
          Working...
          X