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 SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        50 views
        0 likes
        Last Post SalmaTrader  
        Started by CarlTrading, 07-05-2026, 01:16 PM
        0 responses
        22 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 06-17-2026, 10:32 AM
        0 responses
        16 views
        0 likes
        Last Post CaptainJack  
        Started by kinfxhk, 06-17-2026, 04:15 AM
        0 responses
        22 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 06-17-2026, 04:06 AM
        0 responses
        23 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X