/*
* 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;
using System.Collections.Generic;
using QuantConnect.Algorithm.Framework.Alphas;
using QuantConnect.Algorithm.Framework.Execution;
using QuantConnect.Algorithm.Framework.Portfolio;
using QuantConnect.Algorithm.Framework.Selection;
using QuantConnect.Orders;
using QuantConnect.Interfaces;
namespace QuantConnect.Algorithm.CSharp
{
///
/// Regression algorithm which reproduced GH issue 3759 (performing 26 trades).
///
public class FreePortfolioValueRegressionAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
{
///
/// Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.
///
public override void Initialize()
{
UniverseSettings.Resolution = Resolution.Daily;
SetStartDate(2007, 10, 1);
SetEndDate(2018, 2, 1);
SetCash(1000000);
UniverseSettings.Leverage = 1;
SetUniverseSelection(
new ManualUniverseSelectionModel(QuantConnect.Symbol.Create("SPY", SecurityType.Equity, Market.USA))
);
SetAlpha(
new ConstantAlphaModel(InsightType.Price, InsightDirection.Up, QuantConnect.Time.OneDay, 0.025, null)
);
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
SetExecution(new ImmediateExecutionModel());
}
public override void OnEndOfAlgorithm()
{
if (Settings.FreePortfolioValue != 1000000 * Settings.FreePortfolioValuePercentage)
{
throw new Exception($"Unexpected FreePortfolioValue value: {Settings.FreePortfolioValue}");
}
}
public override void OnOrderEvent(OrderEvent orderEvent)
{
Debug($"OnOrderEvent: {orderEvent}");
}
///
/// This is used by the regression test system to indicate if the open source Lean repository has the required data to run this algorithm.
///
public bool CanRunLocally { get; } = true;
///
/// This is used by the regression test system to indicate which languages this algorithm is written in.
///
public Language[] Languages { get; } = { Language.CSharp };
///
/// This is used by the regression test system to indicate what the expected statistics are from running the algorithm
///
public Dictionary ExpectedStatistics => new Dictionary
{
{"Total Trades", "2"},
{"Average Win", "0%"},
{"Average Loss", "0.00%"},
{"Compounding Annual Return", "8.172%"},
{"Drawdown", "55.100%"},
{"Expectancy", "-1"},
{"Net Profit", "125.441%"},
{"Sharpe Ratio", "0.495"},
{"Loss Rate", "100%"},
{"Win Rate", "0%"},
{"Profit-Loss Ratio", "0"},
{"Alpha", "-0.001"},
{"Beta", "0.996"},
{"Annual Standard Deviation", "0.199"},
{"Annual Variance", "0.039"},
{"Information Ratio", "-0.385"},
{"Tracking Error", "0.004"},
{"Treynor Ratio", "0.099"},
{"Total Fees", "$41.17"},
{"Fitness Score", "0"},
{"Kelly Criterion Estimate", "54.431"},
{"Kelly Criterion Probability Value", "0"},
{"Total Insights Generated", "2604"},
{"Total Insights Closed", "2603"},
{"Total Insights Analysis Completed", "2603"},
{"Long Insight Count", "2604"},
{"Short Insight Count", "0"},
{"Long/Short Ratio", "100%"},
{"Estimated Monthly Alpha Value", "$867731.1459"},
{"Total Accumulated Estimated Alpha Value", "$109253377.1754"},
{"Mean Population Estimated Insight Value", "$41972.1003"},
{"Mean Population Direction", "55.436%"},
{"Mean Population Magnitude", "55.436%"},
{"Rolling Averaged Population Direction", "64.4024%"},
{"Rolling Averaged Population Magnitude", "64.4024%"}
};
}
}