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

How can you place a stop order on or near the close for the next day's open?

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

    How can you place a stop order on or near the close for the next day's open?

    Hello,

    I am looking for some way to identify, inside my NinjaScript, that I am at the end of the current trading day. I would like to place a stop order at that time, that can be executed, at the earliest, on the open of the following trading day.

    I could possibly check OnBarUpdate() of the 1 Minute Bars and see if Time[0] = ClosingTimeOfTheMarket, then place the stop order for the next day, but the problem is that there may be no trading for the last few minutes, and so Time[0] might never equal ClosingTimeOfTheMarket on a given trading day.

    Also, I can't find any custom NinjaScript events like "OnClose()".

    What are my options for placing a stop order at or near the end of the day, for execution on the next day, at the earliest?

    Thank you very much in advance!

    ChiTrader2000

    #2
    Hello,

    Try using a condition like this:

    if(ToTime(Time[0]) > 140000)

    Set your time for after market hours so that your order is placed on the market open.

    Note: This will only place the trade if there are some after market data. If you receive no after market data then it will not process your logic.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by popecapllc, 08-09-2023, 07:42 PM
    8 responses
    1,335 views
    0 likes
    Last Post Johng22
    by Johng22
     
    Started by ETFVoyageur, 04-30-2024, 02:04 PM
    11 responses
    97 views
    0 likes
    Last Post ETFVoyageur  
    Started by bubblegum, 03-18-2024, 10:41 AM
    3 responses
    43 views
    0 likes
    Last Post vjsworld  
    Started by JamesK1, Today, 02:48 PM
    1 response
    10 views
    0 likes
    Last Post JamesK1
    by JamesK1
     
    Started by llanqui, Today, 03:51 PM
    0 responses
    9 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Working...
    X