Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Position.MarketPosition and subtraction

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

    Position.MarketPosition and subtraction

    Hello,
    How can I use Position.MarketPosition with subtraction operation?
    Thanks for help in advance.

    #2
    Hi Figos,

    Position.MarketPosition returns type marketposition (Flat, Long, or Short), which is not a numeric value for adding or subtracting. What is it you're looking to do?
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_RyanM View Post
      Hi Figos,

      Position.MarketPosition returns type marketposition (Flat, Long, or Short), which is not a numeric value for adding or subtracting. What is it you're looking to do?
      I want to get entry price for open long or short position and use it with subtraction operation.

      Comment


        #4
        For price there is a property that is easy to access Position.AvgPrice

        You can add or subtract this value.

        if (Position.MarketPosition == MarketPosition.Long)
        Print(Position.AvgPrice - 10);

        If you want to work with specific execution price, it is advanced NinjaScript. You must structure your orders as objects and expose using IExecution.
        Ryan M.NinjaTrader Customer Service

        Comment


          #5
          Originally posted by NinjaTrader_RyanM View Post
          For price there is a property that is easy to access Position.AvgPrice

          You can add or subtract this value.

          if (Position.MarketPosition == MarketPosition.Long)
          Print(Position.AvgPrice - 10);

          If you want to work with specific execution price, it is advanced NinjaScript. You must structure your orders as objects and expose using IExecution.
          And if I want to use entry price for open position in calculating stop.

          Comment


            #6
            Yes, you can use Position.AvgPrice as your entry price and add or subtract it.
            Ryan M.NinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            646 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            367 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            107 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            569 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            573 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X