So, how to put Cumulative profit graph (or other result's graph) in the chart in Strategy Analyzer?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Put Cumulative profit graph in the chart in Strategy Analyzer
Collapse
X
-
-
I tried to create an indicator, but I don't know how to associate indicator with strategy. This lead to error in indicator:
How can I represent CumProfit on the price chart with ScaleJustification=overlay and autoscale=false?Code:Plot0.Set(Performance.AllTrades.TradesPerformance.Points.CumProfit);
I tried with
But it y-sclaed and when want to see chart you don't see profit graph.Code:DrawLine("MyCumProfit"+CurrentBar, false, 1, Performance.AllTrades.TradesPerformance.Percent.CumProfit, 0, Performance.AllTrades.TradesPerformance.Percent.CumProfit, Color.Gray, DashStyle.Dot, 1);
Comment
-
Hello alexstox,
You may want to just plot from within the strategy for the easiest way to do something like this so you do not have to worry about passing variables from your Strategy to your Indicator which can be difficult.
Here is an example of how you can Plot from within a strategy that you may view.
When running a strategy on a chart you may find the need to plot values onto a chart. If these values are internal strategy calculations that are difficult to migrate to an indicator, you can use the following technique to achieve a plot. NinjaTrader 8 With NinjaTrader 8 we introduced strategy plots which provide the abilityJCNinjaTrader Customer Service
Comment
-
Hello alexstox,
Nothing comes to mind to easily be able to do what you looking for. Drawing objects in a Strategy will be on the same scale and writing the values to a file in the Strategy Analyzer can run into issue with file accessing.
Is this something that you want visually? If you use the DrawText() method you should be able to Display the Cumulative Profit when your trades enters or exits.JCNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
71 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
143 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
76 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
47 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
51 views
0 likes
|
Last Post
|
Comment