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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    49 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X