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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      65 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      41 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      23 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      26 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      52 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X