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 CarlTrading, 03-31-2026, 09:41 PM
      1 response
      47 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      23 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      33 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      51 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      42 views
      0 likes
      Last Post CarlTrading  
      Working...
      X