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

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
    Chris L.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,221 views
    0 likes
    Last Post xiinteractive  
    Started by andrewtrades, Today, 04:57 PM
    1 response
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    7 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    438 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    9 views
    0 likes
    Last Post FAQtrader  
    Working...
    X