Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Close position within the current candle

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

    Close position within the current candle

    Hello,

    I use in my strategy the 60 minutes timeframe

    The EXIT is defined as follows:

    //2.4 Short profit:

    if (Position.MarketPosition == MarketPosition.Short

    && GetCurrentBid() <= Position.AvgPrice - Gain3 * TickSize)

    {
    ExitShort("PT-ShortTA3", "Short3");
    }

    The (bid-) price touches the defined exit price, but nothing happens.
    The position is closed at the opening price of the next candle.

    What I need to change that closing of this position within the current candle is carried out?

    #2
    Hello,

    Thank you for the question.

    I would like to ask for some specifics on how you are running this currently.

    Was this in realtime data or backtest?

    Also what is the strategies CalculateOnBarClose set to, true or false?

    I look forward to being of further assistance.

    Comment


      #3
      Hello Jesse,

      I´m using realtime data und CalculateOnBarClose set to true.

      Comment


        #4
        Hello Blackburn,

        With Calculate on bar close set to true, the order is not submitted until the beginning of the next bar, so your strategy is working correctly.

        If you want the order to submit immediately, you will want to either run the strategy with CalculateOnBarClose set to false (for realtime), or submit the order to an added 1 tick data series (usually used for backtesting). An example of submitting orders to an additional data series can be found on our forums here: http://ninjatrader.com/support/forum...ead.php?t=6652

        Please let me know if you have any questions or if I may be of further assistance.
        Michael M.NinjaTrader Quality Assurance

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        68 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        41 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        24 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        27 views
        0 likes
        Last Post TheRealMorford  
        Started by Mindset, 02-28-2026, 06:16 AM
        0 responses
        54 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X