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 helpwanted, Today, 03:06 AM
        1 response
        9 views
        0 likes
        Last Post sarafuenonly123  
        Started by Brevo, Today, 01:45 AM
        0 responses
        7 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        5 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        242 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        385 views
        1 like
        Last Post Gavini
        by Gavini
         
        Working...
        X