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 NullPointStrategies, Yesterday, 05:17 AM
      0 responses
      71 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      143 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      76 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      47 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      51 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X