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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        67 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        36 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        60 views
        1 like
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        62 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        53 views
        0 likes
        Last Post CarlTrading  
        Working...
        X