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

No TraceOrders in Playback

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

    No TraceOrders in Playback

    Hi, I have added the following code to my strategy (actually just a copy of your Sample ATM Strategy), but no order tracing is sent to the output window when using Playback.

    The code from your strategy plus my TraceOrder = True at the end. It compiles fine but nothing happens.

    if (State == State.SetDefaults)
    {
    Description = "SampleATMStrategyStopLoss";
    Name = "SampleATMStrategyStopLoss";
    // This strategy has been designed to take advantage of performance gains in Strategy Analyzer optimizations
    // See the Help Guide for additional information
    IsInstantiatedOnEachOptimizationIteration = false;
    TraceOrders = true;
    }​

    Please advise.

    #2
    Hello sjmuk1,

    Thanks for your post.

    TraceOrders will print information about Managed Approach orders submitted by a strategy such as when the order is submitted, modified, or rejected.

    Atm Strategy Methods are not part of the Managed Approach order methods in the help guide page listed below and TraceOrders will not print to the Output window for strategies that use Atm Strategy Methods.

    Managed Approach: https://ninjatrader.com/support/help...d_approach.htm

    To print information out about the strategy, you would need to use the Atm Strategy Methods to get and print out information as listed in the help guide below.

    Atm Strategy Methods: https://ninjatrader.com/support/help...gy_methods.htm
    Using Atm Strategies in NinjaScript: https://ninjatrader.com/support/help...strategies.htm

    Please let me know if I may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Felix Reichert, 04-26-2024, 02:12 PM
    5 responses
    39 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by cmtjoancolmenero, 04-29-2024, 03:40 PM
    15 responses
    45 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by ETFVoyageur, Yesterday, 06:05 PM
    6 responses
    37 views
    0 likes
    Last Post ETFVoyageur  
    Started by rbeckmann05, Today, 02:35 PM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_BrandonH  
    Started by Torontobluejays, Yesterday, 08:43 AM
    6 responses
    34 views
    0 likes
    Last Post rc5781
    by rc5781
     
    Working...
    X