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

Problem negative value

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

    Problem negative value

    Hi, there is a problem with a negative value under "properties".
    Code:
                private double        tsiOB = 50;
                private double     tsiOS = -50;  // ---<<<
                private int        tsiFast = 3;
                private    int        tsiSlow = 14;
    
    
            [Description("")]
            [GridCategory("Parameters")]
            [Gui.Design.DisplayName ("za.TSI tsiOB")]
            public double TsiOB
            {
                get { return tsiOB; }
                set { tsiOB = Math.Max(0.01, value); }
            }
            
            [Description("")]
            [GridCategory("Parameters")]
            [Gui.Design.DisplayName ("zb.TSI tsiOS")]
            public double TsiOS
            {
                get { return tsiOS; }
                set { tsiOS = Math.Max(0.01, value); }
            }
    See the picture: The 0.01 must be -50 ! --<<< negative value
    Attached Files
    Last edited by mate41; 02-03-2016, 11:41 AM.

    #2
    Hello mate41,

    The value that you set at

    Code:
    private double tsiOS = -50;
    is an initialization value. If you look lower, you see it has this getter and setter :

    Code:
    public double TsiOS
    {
        get { return tsiOS; }
        set { tsiOS = Math.Max(0.01, value); }
    }
    The value you are setting here is stomping your initialization value. If, for instance, you modify the code as follows :

    Code:
    public double TsiOS
    {
        get { return tsiOS; }
        set
        {
            // tsiOS = Math.Max(0.01, value);
            tsiOS = value;
        }
    }
    You will see the expected value.
    Jessica P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by rocketman7, Today, 09:41 AM
    3 responses
    7 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by traderqz, Today, 09:44 AM
    2 responses
    4 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by stafe, 04-15-2024, 08:34 PM
    8 responses
    40 views
    0 likes
    Last Post stafe
    by stafe
     
    Started by rocketman7, Today, 02:12 AM
    7 responses
    31 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by guillembm, Yesterday, 11:25 AM
    3 responses
    16 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Working...
    X