Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    Kate W.NinjaTrader Customer Service

    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.
        Kate W.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Tim-c, Today, 03:54 AM
        0 responses
        1 view
        0 likes
        Last Post Tim-c
        by Tim-c
         
        Started by FrancisMorro, Today, 03:24 AM
        0 responses
        2 views
        0 likes
        Last Post FrancisMorro  
        Started by Segwin, 05-07-2018, 02:15 PM
        10 responses
        1,770 views
        0 likes
        Last Post Leafcutter  
        Started by Rapine Heihei, 04-23-2024, 07:51 PM
        2 responses
        31 views
        0 likes
        Last Post Max238
        by Max238
         
        Started by Shansen, 08-30-2019, 10:18 PM
        24 responses
        945 views
        0 likes
        Last Post spwizard  
        Working...
        X