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 CaptainJack, 05-29-2026, 05:09 AM
        0 responses
        263 views
        0 likes
        Last Post CaptainJack  
        Started by CaptainJack, 05-29-2026, 12:02 AM
        0 responses
        168 views
        0 likes
        Last Post CaptainJack  
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        170 views
        1 like
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        257 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        209 views
        0 likes
        Last Post CarlTrading  
        Working...
        X