Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Time condition

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

    Time condition

    what do i need to include in this condition if i only want orders between 1030pm and 400am the next day

    if (ToTime(Time[0]) >= 223000 && ToTime(Time[0]) <= 40000)

    #2
    Looks like that will never be true. If one is true the other is false and the test will fail. Check if >= 2230 and (&&) <= midnight or (||) >= 000 and (&&) <= 0400 instead, or check if > 0400 && < 2230 is not true (easier).
    eDanny
    NinjaTrader Ecosystem Vendor - Integrity Traders

    Comment


      #3
      Originally posted by fiddy View Post
      what do i need to include in this condition if i only want orders between 1030pm and 400am the next day

      if (ToTime(Time[0]) >= 223000 && ToTime(Time[0]) <= 40000)
      Use DateTime objects, and lose the vagaries of translation to modulo 60 and modulo 24 integer arithmetic.

      Comment


        #4
        if ((ToTime(Time[0]) >= ToTime(22, 30, 0) && ToTime(Time[0]) < ToTime(0, 00, 0))||(ToTime(Time[0]) >= ToTime(0, 00, 0) && ToTime(Time[0]) < ToTime(4, 00, 0)))


        bit weird, but i just copy pasted it. should do the trick tho.
        Last edited by BigRo; 11-17-2015, 10:01 AM.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        319 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        246 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X