Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adding time limits to strategy

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

    Adding time limits to strategy

    I am currently using a time of day restriction in my strategy and would like to add 2 more restrictions.

    1 - if i were to go on vacation over the holiday and wanted to trade from december 1st until december 19th and after the 19th not allow any more trades, how would i use the time field to do this??

    My current code is
    If(totime(time[0]) >= totime (8,0,0)
    && totime(time[0] <= totime (16,0,0))
    {Do this}

    2 - if i wanted to trade during different sessions like between 8am and 11am and then again between 1pm and 4pm how would i change the current time statement.
    Would i just add or statement like

    If(totime(time[0]) >= totime (8,0,0)
    && totime(time[0] <= (11,0,0))
    ||
    If(totime(time[0]) >= totime (13,0,0)
    && totime(time[0] <= totime (16,0,0))
    {Do this}

    Thanks for your help...
    Ken

    #2
    Hello Ken,

    Thank you for your post.

    You can check for the month and date of the DateTime structure, Time[0], and compare this to what you are looking for using ToDay()
    Code:
    if(ToDay(Time[0]) >= 20141201 && ToDay(Time[0]) <= 20141219)
    {
    }
    Additionally, you have the right idea for the OR statement but it will be one IF statemment -
    Code:
    if((totime(time[0]) >= totime (8,0,0) && totime(time[0] <= (11,0,0))
        || (totime(time[0]) >= totime (13,0,0) && totime(time[0] <= totime (16,0,0)))
    {
    }
    http://www.ninjatrader.com/support/h...html?today.htm

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thanks looks like that will work...
      Thanks again
      Ken

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      647 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      368 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      108 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      571 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      573 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X