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 condition

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

  • BigRo
    replied
    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.

    Leave a comment:


  • koganam
    replied
    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.

    Leave a comment:


  • eDanny
    replied
    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).

    Leave a comment:


  • fiddy
    started a topic Time condition

    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)

Latest Posts

Collapse

Topics Statistics Last Post
Started by andrewtrades, Today, 04:57 PM
1 response
5 views
0 likes
Last Post NinjaTrader_Manfred  
Started by chbruno, Today, 04:10 PM
0 responses
3 views
0 likes
Last Post chbruno
by chbruno
 
Started by josh18955, 03-25-2023, 11:16 AM
6 responses
436 views
0 likes
Last Post Delerium  
Started by FAQtrader, Today, 03:35 PM
0 responses
7 views
0 likes
Last Post FAQtrader  
Started by rocketman7, Today, 09:41 AM
5 responses
19 views
0 likes
Last Post NinjaTrader_Jesse  
Working...
X