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 kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    122 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    104 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    82 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    102 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    82 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X