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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    156 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    90 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    138 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    130 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