Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Is it possible to see profit/loss in the chart?

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

    Is it possible to see profit/loss in the chart?

    I trade with an automated strategy And I want to see the profit loss in the chart when the trade is closed is this possible?

    #2
    Is it possible to see profit/loss in the chart?

    Hello MichaelAlexander,

    Thanks for writing in to our Support team.

    You would need to create a variable to hold the information for your last trade and convert the double value to a string to provide as an argument to the Draw.Text() method. You will need to utilize the Trade and TradeCollection objects to achieve this. Here is a short code sample for your reference:

    Code:
    protected override void OnBarUpdate()
    {
    if (SystemPerformance.RealTimeTrades.Count > 0)
    {
    // this line will assign the most recent trade to the lastTrade object
    Trade lastTrade = SystemPerformance.RealTimeTrades[SystemPerformance.RealTimeTrades.Count -1];
    // this line will convert the last trade's profit quoted in currency to a string
    string lastProfitCurrency = lastTrade.ProfitCurrency.ToString();
    // this line will draw the last trade's profit quoted in currency on your chart
    Draw.Text(this, "Profit of last trade", lastProfitCurrency, 10, 1000, Brushes.Black);
    }
    }
    For more information on the Trade Object, you can visit our help guide here:
    http://ninjatrader.com/support/helpG...n-us/trade.htm
    For more information on the TradeCollection data structure, you can visit our help guide here:
    http://ninjatrader.com/support/helpG...collection.htm
    For more information on the Draw.Text() method, you can visit our help guide here:
    http://ninjatrader.com/support/helpG.../draw_text.htm

    Please let me know if I may be of any further assistance.
    Alan S.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    65 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    41 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    23 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    26 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    52 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X