// Copyright (C) 2002-2005 Competo Solutions, Inc.
// All rights reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
// FITNESS FOR A PARTICULAR PURPOSE.
public class Sum : Indicator
{
      // Methods
      public Sum();
      public Sum(int period);
      public override double Calculate(int index, Series series);

      // Properties
      [IndicatorParameter]
      public int Period { get; set; }

}