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 Mindset, 04-21-2026, 06:46 AM
      0 responses
      88 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      134 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      118 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X