Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

very simple question, nt support should definitely be able to assist w/ this request.

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

    very simple question, nt support should definitely be able to assist w/ this request.






    people with nt,


    the properties and using regions and the nt generated code section are some of the most unattractive and frustrating elements for non programmers like myself when working with nt.


    i have a strategy which uses a stop loss order for every position and then adjusts it to a break even stop order if price is made to move in my favor. i am refining this strategy and there are times when i would want the adjusted stop loss order to still be at a negative distance to the entry price but there are also situations when i want to test if it would be better to move this stop to a profitable position.

    therefore, i would like to have a fragment of code like the one below that could work with both negative and positive values. ¿how can i change the range in this fragment so that it is not restricted to positive values only?


    [NinjaScriptProperty]
    [Range(1, int.MaxValue)]
    [Display(Name="", Description="", Order=, GroupName="Parameters")]
    public int
    { get; set; }



    very well, regards.

    #2
    Hi rtwave thanks for posting.

    You can use int.MinValue instead of 1 to allow negative numbers:
    [Range(int.MinValue, int.MaxValue)]

    Best regards,
    -ChrisL

    Comment

    Latest Posts

    Collapse

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