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 Waxavi, Today, 02:00 AM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Started by alifarahani, Today, 09:40 AM
    5 responses
    23 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by Kaledus, Today, 01:29 PM
    4 responses
    12 views
    0 likes
    Last Post Kaledus
    by Kaledus
     
    Started by gentlebenthebear, Today, 01:30 AM
    3 responses
    16 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by PhillT, Today, 02:16 PM
    2 responses
    7 views
    0 likes
    Last Post PhillT
    by PhillT
     
    Working...
    X