Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

GetAtmStrategyRealizedProfitLoss into POINTS??

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

    GetAtmStrategyRealizedProfitLoss into POINTS??

    Is there a way to change the Realized P&L from the
    Code:
    GetAtmStrategyRealizedProfitLoss
    into points instead of Currency.

    My Code snippet
    Code:
    	else if (atmBUYStrategyId.Length > 0 && GetAtmStrategyMarketPosition(atmBUYStrategyId) == Cbi.MarketPosition.Flat)
    					{
    						/* Retrieve the profit or loss from the just-closed ATM strategy and round it to the nearest tick. This only updates after all targets or stops are filled (the position is flat).
    						GetAtmStrategyRealizedProfitLoss can return values such as 99.9999999998 or 100.00000000012, which would be rounded to 100. */
    						realizedProfitLoss = Instrument.MasterInstrument.Round2TickSize(GetAtmStrategyRealizedProfitLoss(atmBUYStrategyId));
    						
    						// Sum the profit to the running total.
    						totalPL = totalPL + realizedProfitLoss;
    						
    						// Reset the strategy id and unrealized profit/loss variables because the strategy is now terminated.
    						atmBUYStrategyId = string.Empty;	
    						unrealizedProfitLoss = 0;
    						
    						//DEBUG: Draw P&L After Each Trade Closes
    						DrawText("P&L" + CurrentBar,  "Last P/L: " + realizedProfitLoss.ToString(), 0, Close[1] + (40 * TickSize), Color.Green);
    						DrawText("TotalP&L" + CurrentBar,  "Total P/L: " + totalPL.ToString(), 0, Close[1] + (60 * TickSize), Color.Black);
    					}
    Shows the P&L in Currency only. any Ideas??

    #2
    Hello ginx10k,

    Thanks for your post.

    You could divide the realized PNL by the point value of the instrument to determine the number of points:
    http://ninjatrader.com/support/helpG...instrument.htm and http://ninjatrader.com/support/helpG...instrument.htm

    For example double pnts = your RealizedPNL / Instrument.MasterInstrument.PointValue;

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    648 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    574 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X