Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy Analyzer Output Results Columns

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

    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.

    #2
    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.

    Code:
    public override string Format(object value, Cbi.PerformanceUnit unit, string propertyName)
    {
    	double mydbl = 9001;
    	return mydbl.ToString();
    }
    Publicly available documentation on Performance Metrics can be found here: https://ninjatrader.com/support/help...ce_metrics.htm

    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.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    35 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    198 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    364 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    283 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X