Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Strategy Analyzer Output Results Columns
Collapse
X
-
Strategy Analyzer Output Results Columns
Is it possible to customize Strategy Analyzer Output Results Columns beyond the preset selectable columns? I would like to add my own customized variable value generated within the strategy to an output column so I could later export it to Excel.Tags: None
-
Hello DuggyLou,
Thanks for opening the thread.
It is possible to create custom performance metrics that will show in the Summary Display of the Strategy Analyzer and can then be exported to Excel. Custom Performance Metrics must be enabled in the Control Center's Options menu under General.
You may wish to re-implement your code within this metric, or you may wish to to have your strategy output this information to an AddOn with static variables and then have the Performance Metric fetch this value in the Metric's Format() method to override what would be written to the Strategy Analyzer grid.
Publicly available documentation on Performance Metrics can be found here: https://ninjatrader.com/support/help...ce_metrics.htmCode:public override string Format(object value, Cbi.PerformanceUnit unit, string propertyName) { double mydbl = 9001; return mydbl.ToString(); }
More information on using static methods/variables in an AddOn and other NinjaScripts can be found in this thread: https://ninjatrader.com/support/foru...ad.php?t=81647
Please let us know if we may be of further assistance.Last edited by NinjaTrader_Jim; 05-18-2018, 10:44 AM.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
49 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
67 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment