Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Simple Strategy is not triggered

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

    Simple Strategy is not triggered

    I created a simple strategy to play a sound and draw a text on the chart when price crossovers weighted moving average, and this strategy is started within the strategies tab in Control Center. However, this strategy is never triggered, below is code

    Thanks!


    // This namespace holds all strategies and is required. Do not change it.
    namespace NinjaTrader.Strategy
    {
    /// <summary>
    /// Enter the description of your strategy here
    /// </summary>
    [Description("Enter the description of your strategy here")]
    public class HSICrossover : Strategy
    {
    #region Variables
    // Wizard generated variables
    // User defined variables (add any user defined variables below)
    #endregion

    /// <summary>
    /// This method is used to configure the strategy and is called once before any strategy method is called.
    /// </summary>
    protected override void Initialize()
    {

    CalculateOnBarClose = true;
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {
    // Condition set 1
    if (CrossAbove(Close, WMA(Close, 13), 1))
    {
    PlaySound(@"C:\Program Files\NinjaTrader 6.5\sounds\Alert3.wav");
    DrawText("Crossover" + CurrentBar, "Crossover", 0, 0, Color.Red);
    Log("Crossover occurred", LogLevel.Information);
    }
    }

    #region Properties
    #endregion
    }
    }

    #2
    marketstudent,

    Please check the Control Center logs for errors. Remember your strategy is only true when the close price crosses above the WMA.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    630 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    364 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    566 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    568 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X