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 charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        52 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        142 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        160 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        96 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        276 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X