Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to enter market on close order?

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

    How to enter market on close order?

    I'm working on a strategy that uses daily chart for entry and I'd like to exit the same day on market on close. I cannot figure out how to do it.

    I try some code like this:

    Code:
    if (BarsInProgress == 1) { 
                    if (ToTime(Time[0]) >= 215930) {
                        ExitShort("Short");
                    }
                }
    (I'm in europe) but the chart says "exit on close" and it lists the close price as the high of the day and not the close.

    I'm using the daily chart as my primary chart for my entry signals and I'm using a 5 minute chart for the exit. My first step is to exit on close. Once that is working I'd like to put in some logic to determine if I exit on close or hold another day. Since I can't get exit on close working I'm really stuck.

    PS: I just realized that there are actually two ways to close at the end of day.. There is the real market on close and there is sending a market order a few seconds before close. For now I'm talking about the latter but I'd also like to know how to send a real MOC order which has to be sent 20 minutes before the close for NYSE stocks..
    Last edited by cunparis; 10-05-2008, 08:42 AM.

    #2
    Hi cunparis,

    If you are seeing your exits being tagged as "Exit on Close" this is because those orders are not coming from your code, but rather from the internal NinjaTrader's exit on close logic. What you would want to do is turn off this option when you are running your strategy because it will always submit to the BarsInProgress = 0 context. You want your strategy to use your own logic.

    Unfortunately we do not support the MOC order type. You will have to submit the market order a few minutes/seconds before market close.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    633 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    364 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    567 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    568 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X