Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

CS0246 namespace Time/Times not found for multi data series script

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

    CS0246 namespace Time/Times not found for multi data series script

    Hi sorry for he newbie question - added a second data series to my script, replaced Time types to Times, but still complaining CS0246: The type or namespace for Times (or Time) could not be found. Some help please?

    #2
    Hi momchi, thanks for your post.

    Make sure you are using this in the OnBarUpdate() method. Please post a code snipped if the example below does not resolve your inquiry.

    e.g.

    Code:
    OnBarUpdate()
    {
        if(CurrentBars[0] < 1 || CurrentBars[1] < 1)
            return;
    
        DateTime x = Times[0][0];
        DateTime y = Times[1][0];
    }
    Kind regards.

    Comment


      #3
      Hi Chris,
      my issue is resolved. I was confused for a moment and thought that the type of data objects in the series is 'Times' as opposed to DateTime,
      so had something like that:
      private Times time;

      thank you for the example and clarification,
      Momchil

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      43 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      21 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      30 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      50 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      41 views
      0 likes
      Last Post CarlTrading  
      Working...
      X