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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    89 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    107 views
    0 likes
    Last Post CarlTrading  
    Working...
    X