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 gravdigaz6, Yesterday, 11:40 PM
    1 response
    7 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by MarianApalaghiei, Yesterday, 10:49 PM
    3 responses
    10 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by XXtrader, Yesterday, 11:30 PM
    0 responses
    4 views
    0 likes
    Last Post XXtrader  
    Started by love2code2trade, 04-17-2024, 01:45 PM
    4 responses
    28 views
    0 likes
    Last Post love2code2trade  
    Started by funk10101, Yesterday, 09:43 PM
    0 responses
    9 views
    0 likes
    Last Post funk10101  
    Working...
    X