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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    339 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    212 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    196 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    288 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    245 views
    0 likes
    Last Post CarlTrading  
    Working...
    X