Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by warreng86, 11-10-2020, 02:04 PM
    6 responses
    1,359 views
    0 likes
    Last Post mathewlo  
    Started by Perr0Grande, Today, 08:16 PM
    0 responses
    5 views
    0 likes
    Last Post Perr0Grande  
    Started by elderan, Today, 08:03 PM
    0 responses
    9 views
    0 likes
    Last Post elderan
    by elderan
     
    Started by algospoke, Today, 06:40 PM
    0 responses
    10 views
    0 likes
    Last Post algospoke  
    Started by maybeimnotrader, Today, 05:46 PM
    0 responses
    14 views
    0 likes
    Last Post maybeimnotrader  
    Working...
    X