Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 wzgy0920, 04-20-2024, 06:09 PM
        2 responses
        26 views
        0 likes
        Last Post wzgy0920  
        Started by wzgy0920, 02-22-2024, 01:11 AM
        5 responses
        32 views
        0 likes
        Last Post wzgy0920  
        Started by wzgy0920, Yesterday, 09:53 PM
        2 responses
        49 views
        0 likes
        Last Post wzgy0920  
        Started by Kensonprib, 04-28-2021, 10:11 AM
        5 responses
        192 views
        0 likes
        Last Post Hasadafa  
        Started by GussJ, 03-04-2020, 03:11 PM
        11 responses
        3,234 views
        0 likes
        Last Post xiinteractive  
        Working...
        X