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

Why doesn't work this ExitOnClose sub-routine

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

    Why doesn't work this ExitOnClose sub-routine

    Hi ninjas,

    I'm trying to do a simple own ExitOnClose that substitutes the NT default gate, cause I'm aware that often while "live", it doesn't work properly. I'm aware that NT team is working to solve it in the next major upgrade. So at this point, I thought a simple sub-routine:

    // if market is open, Algo works taking positions
    if(ToTime(Time[0]) >= 171500 || ToTime(Time[0]) <= 165950)
    {
    // ALGO WORKING
    }

    // if market is closed, Flatten-All
    if (Position.MarketPosition != MarketPosition.Flat)
    {
    ExitLong();
    ExitShort();
    }

    Supposedly, the control flow should be within the main sub-routine until the two conditions are both false, that's when ToTime(Time[0]) >= 170000 ToTime(Time[0]) <171500 . The problem is it seems that very often the sub-routine go out of that bracket to execute the Flatten-All sub-routine. I can work this out with certain changes, but I'm curious why this logic doesn't its job.

    Thanks

    #2
    Hi Ninjas,

    I've posted a more complete thread about this issue:


    Please ignore this post then.

    Thanks

    Comment


      #3
      Hello pstrusi,

      Thank you for your post.

      I will respond on the linked thread

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by traderqz, Today, 09:44 AM
      2 responses
      4 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by stafe, 04-15-2024, 08:34 PM
      8 responses
      40 views
      0 likes
      Last Post stafe
      by stafe
       
      Started by rocketman7, Today, 09:41 AM
      3 responses
      7 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by rocketman7, Today, 02:12 AM
      7 responses
      31 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by guillembm, Yesterday, 11:25 AM
      3 responses
      16 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X