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

performance metric question

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

    performance metric question

    Hello,
    I'm studying performance metric. I would for first step understand how to print a particular performance metric value on output.
    For this pourpose, I wrote a sample strategy where i would print the cumulative profit of each trade on the output.( I used cumulative profit just because it's already in the platform performance metric sample!!!)
    I added the NT sample sumcumprofit (... but I could use another permormance metric, I'm not interseting in cumprofit) in the strategy but i don't know how to print the cum profit value.
    Can you give me some advice please? Thank you in advance!



    public class PrintPerformancemetric : Strategy
    {

    NinjaTrader.NinjaScript.PerformanceMetrics.SampleC umProfit myProfit;

    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    Description = @"Enter the description for your new custom Strategy here.";
    Name = "PrintPerformancemetric";
    Calculate = Calculate.OnBarClose;
    EntriesPerDirection = 1;
    EntryHandling = EntryHandling.AllEntries;
    IsExitOnSessionCloseStrategy = true;
    ExitOnSessionCloseSeconds = 30;
    IsFillLimitOnTouch = false;
    MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
    OrderFillResolution = OrderFillResolution.Standard;
    Slippage = 0;
    StartBehavior = StartBehavior.WaitUntilFlat;
    TimeInForce = TimeInForce.Gtc;
    TraceOrders = false;
    RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
    StopTargetHandling = StopTargetHandling.PerEntryExecution;
    BarsRequiredToTrade = 20;
    // Disable this property for performance gains in Strategy Analyzer optimizations
    // See the Help Guide for additional information
    IsInstantiatedOnEachOptimizationIteration = true;
    }
    else if (State == State.Configure)
    {
    myProfit = new NinjaTrader.NinjaScript.PerformanceMetrics.SampleC umProfit();
    AddPerformanceMetric(new NinjaTrader.NinjaScript.PerformanceMetrics.SampleC umProfit());

    SetProfitTarget(CalculationMode.Ticks, 20);
    SetStopLoss(CalculationMode.Ticks, 20);

    }
    }

    protected override void OnBarUpdate()
    {
    if(CurrentBar<10)
    return;

    if(High[0]>High[1])
    EnterLong();

    // I would print samplecumprofit of each trade on the output...

    }
    Last edited by zteck; 11-07-2017, 09:05 AM.

    #2
    Hello zteck,

    Thank you for your note.

    The link below if added to your script will print the SampleCumProfit to the Output window.


    I have provided a screen shot demonstrating this.

    Please let us know if you need further assistance.
    Attached Files
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Thank you so much for the help ALanP!!!
      I haveanother question about performance metric... How can I see a performance metric on the strategy analyzer grid?

      Comment


        #4
        Hello zteck,

        You would enable these under Tools>Options.

        At the following link, please see next to Custom performance metric(s),


        Please let us know if you need further assistance.
        Alan P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by wzgy0920, 04-20-2024, 06:09 PM
        2 responses
        27 views
        0 likes
        Last Post wzgy0920  
        Started by wzgy0920, 02-22-2024, 01:11 AM
        5 responses
        32 views
        0 likes
        Last Post wzgy0920  
        Started by wzgy0920, 04-23-2024, 09:53 PM
        2 responses
        49 views
        0 likes
        Last Post wzgy0920  
        Started by Kensonprib, 04-28-2021, 10:11 AM
        5 responses
        193 views
        0 likes
        Last Post Hasadafa  
        Started by GussJ, 03-04-2020, 03:11 PM
        11 responses
        3,235 views
        0 likes
        Last Post xiinteractive  
        Working...
        X