Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Too many entries

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

    Too many entries

    Jason,
    I am placing this one here for reference by anyone who might encounter such a problem in the future.
    I debugged my script and figured out the following:

    e.g

    if (CrossAbove(MACD(Fast, Slow, Smooth).Avg, EMA(MACD(Fast, Slow, Smooth).Avg, MAPeriod), 1));

    and

    if (CrossAbove(MACD(Fast, Slow, Smooth).Avg, EMA(MACD(Fast, Slow, Smooth).Avg, MAPeriod), 1))

    The above conditions being almost identical behave totally different just because of the semicolon placement.
    I am not a C# expert to know why but I now know where to begin my quest.
    Thank

    Kiriru
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^
    Hello,

    Thank you for your note.

    The screenshot displays your strategy submits a lot of orders. I am not sure why your strategy acts like this.

    NinjaTrader 7.0.0.21 had changes in regards to NinjaScript.

    Miscellaneous NinjaScript Information
    – GetSessionDate() is no longer publicly exposed. Please use GetTradingDayFromLocal() instead.
    – GetSessionBar() is now deprecated. Please use GetDayBar() instead.

    Could it be your strategy uses one of these methods, which resulted in the unexpected behavior?

    You will need to debug your strategy to check why it does not function as expected. You can find general debug information at the link below.
    Attached Files

    #2
    Hello,


    Ah yes this will do it. As you do not need a semi colen after an if statement. if, if else, while, for, or any type of condition branching looks like the below. Thanks for sharing!

    if (condition)
    {
    Do This;
    }
    BrettNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    579 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    334 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X