Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

wont compile, no bug in code?

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

    wont compile, no bug in code?

    I simply changed a formula but it says it has problems compiling, i have done nothing wrong at all, the code is correct yet it wont let me compile, please help.

    please see picture

    Click image for larger version

Name:	indicatorcrash.jpg
Views:	1
Size:	97.3 KB
ID:	892667

    #2
    james377,

    Double click on any of those error messages and it will open the file that needs fixing. All errors need to be fixed across all scripts before you can compile.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by james377 View Post
      I simply changed a formula but it says it has problems compiling, i have done nothing wrong at all, the code is correct yet it wont let me compile, please help.

      please see picture

      [ATTACH]8056[/ATTACH]
      How come you are saying "the code is correct" if it isn't?

      Comment


        #4
        I'm hoping you've found your answer to this by now but if not.

        Your Plot0.Set statement has multiple syntax errors.

        The Syntax for an EMA is either
        Code:
        EMA(int period) 
        EMA(IDataSeries inputData, int period)
        then you need to specify which bar you want to display. eg EMA(12)[0]
        You are not specifying the period when you say EMA[2]

        It looks like you where trying for a Triple EMA 2 period EMA. So something like the following may work better.
        Code:
         
        Plot0.Set(EMA(EMA(EMA(2),2),2)[0]);

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        581 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        338 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        103 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
        552 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X