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

The type or namespace name 'ChartPattern' could not be found

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

    The type or namespace name 'ChartPattern' could not be found

    Hey everyone, trying to export a Strategy that uses the enum ChartPattern found in the CandlestickPattern Indicator class but when I go to export it I get an error :

    The type or namespace name 'ChartPattern' could not be found (are you missing a using directive or an assembly reference?)

    Here is my code :

    Code:
     public class MLRegression : Strategy
    {[INDENT]private ChartPattern candleBeforeEntry; // ERROR HERE[/INDENT][INDENT]protected override void OnStateChange()[/INDENT][INDENT]{ }[/INDENT]
     }

    #2
    Hello JackOfSpades,

    Thank you for your post.

    This error message means that you would need to include the CandlestickPattern indicator in your script in order to have access to the CandlestickPattern enum ChartPattern. In your script, add the following code before or after the ChartPattern line. The code would look something like this:

    Code:
    public class MLRegression : Strategy
    {
        private CandlestickPattern candleStickPattern;
        private ChartPattern candleBeforeEntry;
    
        protected override void OnStateChange() { }
    }
    After adding this line to your script and compiling it, you should be able to export the Strategy.

    Please let us know if we may assist further.
    Brandon H.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_BrandonH View Post
      Hello JackOfSpades,

      Thank you for your post.

      This error message means that you would need to include the CandlestickPattern indicator in your script in order to have access to the CandlestickPattern enum ChartPattern. In your script, add the following code before or after the ChartPattern line. The code would look something like this:

      Code:
      public class MLRegression : Strategy
      {
      private CandlestickPattern candleStickPattern;
      private ChartPattern candleBeforeEntry;
      
      protected override void OnStateChange() { }
      }
      After adding this line to your script and compiling it, you should be able to export the Strategy.

      Please let us know if we may assist further.
      Hey Brandon, yup that fixed it!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by alifarahani, Today, 09:40 AM
      6 responses
      38 views
      0 likes
      Last Post alifarahani  
      Started by Waxavi, Today, 02:10 AM
      1 response
      18 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by Kaledus, Today, 01:29 PM
      5 responses
      15 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Started by Waxavi, Today, 02:00 AM
      1 response
      12 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by gentlebenthebear, Today, 01:30 AM
      3 responses
      17 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X