Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Market Open Order

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

    Market Open Order

    How can I place a Market at Open order using automated strategies like described here:
    A Market-on-Open order is a market order with the submitted at market open and fills at the market price


    Thanks

    #2
    simpletrader,

    This would be possible. A strategy can check if its the first tick of a bar at session open, then place a market order immediately.

    There is no built in functionality for this, but it could be programmed for sure.

    if ( Bars.FirstBarOfSession && FirstTickOfBar)
    {
    EnterLong();
    }

    Here is an example, but you would probably want to have CalculateOnBarClose = false for this strategy.
    Adam P.NinjaTrader Customer Service

    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
    191 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,233 views
    0 likes
    Last Post xiinteractive  
    Working...
    X