Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

entry price variable

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

    entry price variable

    is this correct code to set a variable to the current open trade entry price?

    double EntryPrice = Position.AvgPrice;

    #2
    Hello James377,

    That will be an average of all current open positions. If you have only one, that should work for you.

    If you wanted the price of a specific fill, you would have to expose this value using the IExecution interface.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      does SetProfitTarget("", CalculationMode.Ticks, EntryPrice + profitfactor);

      use entry price automatically if I just said

      SetProfitTarget("", CalculationMode.Ticks, 5); for example...is that the same as setting

      SetProfitTarget("", CalculationMode.Ticks, EntryPrice + profitfactor);

      with profitfactor being 5??

      Comment


        #4
        No, those are not the same statements.

        CalculationMode.Ticks will place an order in relation to entry price, and you don't have to specify entry price.

        Example: YM long entry at 10,000
        SetProfitTarget("", CalculationMode.Ticks, 5);

        Above statement places sell limit order at 10,005.
        Ryan M.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        72 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        39 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        63 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        63 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        53 views
        0 likes
        Last Post CarlTrading  
        Working...
        X