/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
using System.Collections.Generic;
namespace QuantConnect.Optimizer
{
///
/// One k-means cluster of backtests in standardized parameter space.
///
public class Cluster
{
///
/// Cluster centroid in original parameter units.
///
public IReadOnlyDictionary Centroid { get; set; }
///
/// Number of backtests assigned to this cluster.
///
public int MemberCount { get; set; }
///
/// Mean Sharpe ratio across the cluster's members.
///
public decimal SharpeMean { get; set; }
///
/// Sample standard deviation of Sharpe ratios within this cluster.
///
public decimal SharpeStdDev { get; set; }
///
/// Minimum Sharpe ratio within this cluster.
///
public decimal SharpeMin { get; set; }
///
/// Maximum Sharpe ratio within this cluster.
///
public decimal SharpeMax { get; set; }
}
}