Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Trigger outside Trading Times set

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

    Trigger outside Trading Times set

    I have an issue trying to figure out Why or what I need to do so solve this issue. I have a trading start time and a trading stop time. My conditions are meet prior to the trading time window. The orders are held until the trading time window is reached and then sent.

    How do i keep the evalutions of the condtions from even being looked at until after the trading time window opens

    #2
    Hello DTSSTS,

    Thank you for your note.

    You could check the times before processing other items and if it's not within that time period, return so nothing else is processed until you're in that window. So, something like:

    if (Time[0] > MyStartTime && Time[0] < MyEndTime)
    {
    //your logic goes here
    }
    else
    {
    return;
    }

    This would keep other conditions in your logic from being checked unless the time is within your defined period.

    Please let us know if we may be of further assistance to you.

    Comment


      #3
      that is what i am doing on the conditions area that is checked to send orders, but i am not doing that in the areas that some of rules (other conditions) are checked to see if there respective logic is true.
      SO YOU ARE SAYING i need the time code on every area rules or logic is being considered/checked

      thanks

      Comment


        #4
        Hello DTSSTS,

        Thank you for your note.

        Yes, if you don't want the other conditions checked within that period you'd want to put them inside that check for the time.

        Please let us know if we may be of further assistance to you.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Today, 05:17 AM
        0 responses
        51 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        127 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        69 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        42 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        46 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X