Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Two Times

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

    Two Times

    Hello:

    Please, How to put "two" time slots( 90000-110000 and 150000-170000).

    I have an example of a time slot.

    if (Totime (Time [0])> HoraSalida | | Totime (Time [0]) <HoraEntrada)
    {
    ExitShort ("", "");
    ExitLong ();
    return;
    }

    Thank you very much.

    #2
    Hello,

    If you wanted to place two time slots, you would want to check between these periods.

    Code:
    // if the current time is after 9, but before 11 OR if time is after 3, but before 5
      if (ToTime(Time[0])> 90000 && ToTime(Time[0]) < 110000 || ToTime(Time[0]) > 150000 && ToTime(Time[0]) < 170000)
            
    {
    ExitShort ("", "");
    ExitLong ();
    return;
    }
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    26 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, Yesterday, 09:53 PM
    2 responses
    49 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    192 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,234 views
    0 likes
    Last Post xiinteractive  
    Working...
    X