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 NullPointStrategies, Today, 05:17 AM
      0 responses
      20 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      119 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      63 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      41 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      45 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X