Announcement

Collapse
No announcement yet.

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.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    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 CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      478 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      319 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      258 views
      1 like
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      341 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      309 views
      0 likes
      Last Post CarlTrading  
      Working...
      X