Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Rounding Prices To Instrument Price

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

    Rounding Prices To Instrument Price

    Hello,

    I plan to build some strategies with /ES market.

    What happens if I try to set a stop loss or limit order at price not equal to current bid such as XXXX.00, XXXX.25, XXXX.50, and XXXX.75.

    For example, say I want use ATR to set a stop loss price:

    ATR(10) = 1.73 (see example)
    Entry Price = 2665.50
    Stop_Loss_Price = 2665.50 - 1.73

    Stop_Loss_Price = 2663.77

    SetStopLoss(@"Long_Signal", CalculationMode.Price, Stop_Loss_Price, false);

    Question:
    1. Will NT8 round the Stop_Loss_Price number to 2663.75 or 2664?
    2. What if the Stop_Loss_Price was calculated as 2663.09 ? What will NT8 round the number to?

    Thanks for the help.
    Attached Files

    #2
    Hello simple_goodoboy,

    Thanks for your question.

    NinjaTrader will round the prices so they are valid for order submission.

    For a faster answer, this can be easily set up and tested on your end without having to wait for our office to open. For example, a strategy that places a Stop Loss or a Profit Target in State.Configure with the price you want to test can show you the order gets rounded.

    Code:
    else if (State == State.Configure)
    	{
    		SetProfitTarget(CalculationMode.Price, 3019.657829);
    	}
    }
    
    protected override void OnBarUpdate()
    {
    	if(State == State.Realtime)
    		EnterLong();
    }
    For testing Realtime data after hours, you can use the Playback Connection or use the Simulated Data Feed with a Default 24/7 Trading Hours template.

    If you have any other questions, please don't hesitate to ask.

    Comment


      #3
      Originally posted by NinjaTrader_Jim View Post
      Hello simple_goodoboy,

      Thanks for your question.

      NinjaTrader will round the prices so they are valid for order submission.

      For a faster answer, this can be easily set up and tested on your end without having to wait for our office to open. For example, a strategy that places a Stop Loss or a Profit Target in State.Configure with the price you want to test can show you the order gets rounded.

      Code:
      else if (State == State.Configure)
      	{
      		SetProfitTarget(CalculationMode.Price, 3019.657829);
      	}
      }
      
      protected override void OnBarUpdate()
      {
      	if(State == State.Realtime)
      		EnterLong();
      }
      For testing Realtime data after hours, you can use the Playback Connection or use the Simulated Data Feed with a Default 24/7 Trading Hours template.

      If you have any other questions, please don't hesitate to ask.
      Thank you so much Jim. I will try this.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      21 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      120 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      63 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      45 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X