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 CarlTrading, 03-31-2026, 09:41 PM
            1 response
            152 views
            1 like
            Last Post NinjaTrader_ChelseaB  
            Started by CarlTrading, 04-01-2026, 02:41 AM
            0 responses
            89 views
            1 like
            Last Post CarlTrading  
            Started by CaptainJack, 03-31-2026, 11:44 PM
            0 responses
            131 views
            2 likes
            Last Post CaptainJack  
            Started by CarlTrading, 03-30-2026, 11:51 AM
            0 responses
            127 views
            1 like
            Last Post CarlTrading  
            Started by CarlTrading, 03-30-2026, 11:48 AM
            0 responses
            107 views
            0 likes
            Last Post CarlTrading  
            Working...
            X