Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

ToTime Question

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

    ToTime Question

    I know that if you only want to trade between 11:45 AM and 1:45 PM, you would put:

    if (ToTime(Time[0]) >= 114500 && ToTime(Time[0]) <= 134500)

    But....... What is the easiest way to say that you don't want to trade between those hours??

    Thanks!

    #2
    Originally posted by edgeliner View Post
    I know that if you only want to trade between 11:45 AM and 1:45 PM, you would put:

    if (ToTime(Time[0]) >= 114500 && ToTime(Time[0]) <= 134500)

    But....... What is the easiest way to say that you don't want to trade between those hours??

    Thanks!
    That is an exercise in combinatorial logic. You use an OR and negation.

    Code:
    if (ToTime(Time[0]) <= 114500 || ToTime(Time[0]) >= 134500) MakeSomeMegabucks();

    Comment


      #3
      You're the best koganam! Thanks a bunch!!!

      Comment


        #4
        Hello,

        Koganam's solution is the most eloquent I know of.

        You could use return block after your && statement:

        Code:
        if (ToTime(Time[0]) >= 114500 && ToTime(Time[0]) <=  134500)
        return;
        But this could lead to potential issues outside of your intentions. With that known, I would go with what koganam was nice enough to share.
        MatthewNinjaTrader Product Management

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        649 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        370 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        109 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        574 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        576 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X