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

Time type and parameter

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

    Time type and parameter

    What data type does ToTime() return?

    And do I need to know any tricks to make a Strategy Parameter of that type?

    #2
    Hi dbooksta,

    ToTime() returns an integer.

    You can read about this in the help guide under ToTime().
    http://www.ninjatrader.com/support/h...nt7/totime.htm

    For an example of how to make a public int, take a look at the #region Properties of the SMA indicator (Tools -> Edit NinjaScript -> Indicator... -> SMA -> OK).
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      So there is no way to create a Strategy Parameter that prompts the user for a time using a format the user would be familiar with? Only as an unconstrained HHMMSS?

      Comment


        #4
        dbooksta, as alternative you could also look into C# directly for this purpose via a TimeSpan user input - for example something like -

        Code:
        [XmlIgnore]
        [Description("RTH StartTime")]
        [GridCategory("RTH Parameters")]
        public TimeSpan RTHStart
        {
        	get { return rthStart; }
        	set { rthStart = value; }
        }
        		
        [Browsable(false)]
        public string RTHStartSerialize 
        {
        	get { return rthStart.ToString(); }
        	set { rthStart = TimeSpan.Parse(value); }
        }
        BertrandNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by DanielTynera, Today, 01:14 AM
        0 responses
        2 views
        0 likes
        Last Post DanielTynera  
        Started by yertle, 04-18-2024, 08:38 AM
        9 responses
        40 views
        0 likes
        Last Post yertle
        by yertle
         
        Started by techgetgame, Yesterday, 11:42 PM
        0 responses
        9 views
        0 likes
        Last Post techgetgame  
        Started by sephichapdson, Yesterday, 11:36 PM
        0 responses
        2 views
        0 likes
        Last Post sephichapdson  
        Started by bortz, 11-06-2023, 08:04 AM
        47 responses
        1,615 views
        0 likes
        Last Post aligator  
        Working...
        X