Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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;
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by fx.practic, 10-15-2013, 12:53 AM
    5 responses
    5,404 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by Shai Samuel, 07-02-2022, 02:46 PM
    4 responses
    95 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by DJ888, Yesterday, 10:57 PM
    0 responses
    8 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    159 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Yesterday, 09:29 PM
    0 responses
    8 views
    0 likes
    Last Post Belfortbucks  
    Working...
    X