Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to calculate estimated profit/loss base on the formular on the docs

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

    How to calculate estimated profit/loss base on the formular on the docs

    I got this formula here https://ninjatrader.com/support/help...tion_modes.htm

    I find it difficult to apply the formula. My mission is to calculate what will be the profit after my sellLimit TP is filled before executing the order.

    This is what i have tried according to the docs above:

    Code:
            double calcProfit(string Mode, uint LS, double quantity, double exitPrice, double entryPrice){
                /*@Params
                    Mode C=Currency, P=Percent, Po=Points, Pi=Pips,  T=Ticks
                    LS  1=long, -1=short
                @DOCS
                    https://ninjatrader.com/support/helpGuides/nt8/NT%20HelpGuide%20English.html?profit_and_loss_calculation_modes.htm
                **/
                double profitInPoint = LS * quantity * (exitPrice - entryPrice) / (exitPrice* Instrument.MasterInstrument.PointValue) / 1;
    
    
                return profitInPoint;
            }​
    But it not given me to correct profit in point.

    Please how can i calculate the profit either in Currency, Points or Percent?

    #2
    Hello tomtom555,

    For points this would be the entry minus the exit and then multiplied by the quantity.

    For currency, the above value (already calculated) would be multiplied by the point value.

    Currently you are only multiplying the exit with the point value and not the entry minus the exit first, and then multiplied by the point value.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thank you for your response. I will check an revert asap

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      69 views
      0 likes
      Last Post PaulMohn  
      Working...
      X