Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Strategy Compiles but Can't Enable

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

    Strategy Compiles but Can't Enable

    Hello,

    Little problem. The 2 lines of code that are a problem I denoted with " ** ". I'm able to compile "Group A", but can't enable the strategy.
    When I remove the 2 lines, I'm able to compile and enable the "Group B" strategy. I can't figure out what's wrong with those 2 lines of code.
    No errors. Nothing in the logs for either group of commands. Can someone assist?

    (Group "A")
    if ((Close[0] > SMA(26)[0]) &&
    (MACD(12, 26, 9)[1] < MACD(12, 26, 9)[0] && MACD(12, 26, 9)[1] < MACD(12, 26, 9)[2]) &&
    ** ((MACD(12, 26, 9)[9] < MACD(12, 26, 9)[6] && MACD(12, 26, 9)[9] < MACD(12, 26, 9)[12] && MACD(12, 26, 9)[9] < MACD(12, 26, 9)[3]) ||
    ** (MACD(12, 26, 9)[10] < MACD(12, 26, 9)[7] && MACD(12, 26, 9)[10] < MACD(12, 26, 9)[13] && MACD(12, 26, 9)[10] < MACD(12, 26, 9)[4])))
    {
    Draw.ArrowUp(this, @"Up " + Convert.ToString(CurrentBars[0]), false, 0, (Low[0] + (-4 * TickSize)) , Brushes.Lime);
    }

    -------------------------------------------------------------------

    (Group "B")
    if ((Close[0] > SMA(26)[0]) &&
    (MACD(12, 26, 9)[1] < MACD(12, 26, 9)[0] && MACD(12, 26, 9)[1] < MACD(12, 26, 9)[2]))
    {
    Draw.ArrowUp(this, @"Up " + Convert.ToString(CurrentBars[0]), false, 0, (Low[0] + (-4 * TickSize)) , Brushes.Lime);
    }

    #2
    Hi, thanks for posting. I moved your post to the strategy development section of the forum.

    With group A, Do you have a BarsAgo check for the maximum lookback e.g.

    Code:
    if(CurrentBar < 10)
        return;
    
    //process Group A here
    It's working on the test script that I made. I attached it to this post for reference. If you want to test this, add the .cs file to Documents\NinjaTrader 8\bin\Custom\Strategies and compile.

    Kind regards,
    -ChrisL
    Attached Files

    Comment


      #3
      Sometimes you just need a fresh set of eyes. Thanks for the assist Chris. Everything's running fine.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      64 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      40 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      166 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      101 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      162 views
      2 likes
      Last Post CaptainJack  
      Working...
      X