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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    41 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    27 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    45 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    37 views
    0 likes
    Last Post CarlTrading  
    Working...
    X