Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Error on Generating Strategy

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

    Error on Generating Strategy

    I have been trying to generate new strategies today using strategy analyzer. However, regardless of what strategy I am trying to save or compile, I get an error: "Error on generating strategy". I was able to save the same strategy earlier. This is happening with all my previously saved strategies as well as new strategies

    #2
    Please see those tips / steps here to help iron out those present NinjaScript programming errors - http://www.ninjatrader.com/support/f...ead.php?t=4678

    All your scripts will need to be in so called compilable state (no programming errors), as NinjaTrader compiles all those into one DLL assembly to be used at runtime.

    Comment


      #3
      Originally posted by NinjaTrader_Bertrand View Post
      Please see those tips / steps here to help iron out those present NinjaScript programming errors - http://www.ninjatrader.com/support/f...ead.php?t=4678

      All your scripts will need to be in so called compilable state (no programming errors), as NinjaTrader compiles all those into one DLL assembly to be used at runtime.
      I have not generated the code manually. I have used the strategy analyzer's 'Strategies' feature to develop the code. It is quite unusual that the code generated by the strategy analyzer is generating errors

      Comment


        #4
        Correct, normally this should not be the source of your issues - please try the manual compile of scripts nonetheless to investigate why this message is being thrown, perhaps you're just missing a reference dll...

        Thanks,

        Comment


          #5
          Using 5 min SMA in 5 Range Chart

          I have developed a strategy which works on 5 Range chart. However, I would like to use the 200 SMA of a 5 Min chart in my strategy instead of the 200 SMA of the 5 Range chart.

          I have already added the 5 minute bar data as follows:

          protected override void Initialize()

          {

          // Add a 5 minute Bars object to the strategy
          Add(PeriodType.Minute, 5);


          How do I replace the following code to refer to the SMA of the 5 min chart?

          && Close[0] > SMA (200)[0]

          As you can see I am a Newbie programmer

          Comment


            #6
            Hello there, when you add additional data series to a script, there are more arrays created to store the additional data. The primary instrument's most recent close will be stored in Closes[0][0], while the additional instrument's closes will be stored in Closes[1][0]. Likewise, you can reference these closes in the moving average calculation:
            Code:
            double fiveMinSMA = SMA(Closes[1], 200)[0];
            AustinNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by argusthome, 03-08-2026, 10:06 AM
            0 responses
            71 views
            0 likes
            Last Post argusthome  
            Started by NabilKhattabi, 03-06-2026, 11:18 AM
            0 responses
            42 views
            0 likes
            Last Post NabilKhattabi  
            Started by Deep42, 03-06-2026, 12:28 AM
            0 responses
            25 views
            0 likes
            Last Post Deep42
            by Deep42
             
            Started by TheRealMorford, 03-05-2026, 06:15 PM
            0 responses
            28 views
            0 likes
            Last Post TheRealMorford  
            Started by Mindset, 02-28-2026, 06:16 AM
            0 responses
            56 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Working...
            X