ed92e6653b
* Fix EMA indicator first value calculation As done by TALib and TradingView, the first EMA value after warmup is the SMA of the first period. * Update TSI indicator test data Data was exported from TradingView * Update TRIX indicator test data from TradingView * Update AccumulationDistributionOscillator indicator test data from TradingView * Update Double EMA indicator test data from TradingView * Update McClellanSummationIndex indicator test data * Update SchaffTrendCycle indicator test data * Update TripleExponentialMovingAverage indicator test data from TradingView * Update stats for algorithms using EMA * Update failing unit tests
111 lines
4.4 KiB
C#
111 lines
4.4 KiB
C#
/*
|
|
* 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;
|
|
using QuantConnect.Algorithm.Framework.Alphas;
|
|
using QuantConnect.Algorithm.Framework.Execution;
|
|
using QuantConnect.Algorithm.Framework.Portfolio;
|
|
using QuantConnect.Algorithm.Framework.Risk;
|
|
using QuantConnect.Algorithm.Framework.Selection;
|
|
using QuantConnect.Interfaces;
|
|
|
|
namespace QuantConnect.Algorithm.CSharp
|
|
{
|
|
/// <summary>
|
|
/// Show cases how to use the <see cref="CompositeAlphaModel"/> to define
|
|
/// </summary>
|
|
public class CompositeAlphaModelFrameworkAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
SetStartDate(2013, 10, 07);
|
|
SetEndDate(2013, 10, 11);
|
|
|
|
// even though we're using a framework algorithm, we can still add our securities
|
|
// using the AddEquity/Forex/Crypto/ect methods and then pass them into a manual
|
|
// universe selection model using Securities.Keys
|
|
AddEquity("SPY");
|
|
AddEquity("IBM");
|
|
AddEquity("BAC");
|
|
AddEquity("AIG");
|
|
|
|
// define a manual universe of all the securities we manually registered
|
|
SetUniverseSelection(new ManualUniverseSelectionModel());
|
|
|
|
// define alpha model as a composite of the rsi and ema cross models
|
|
SetAlpha(new CompositeAlphaModel(
|
|
new RsiAlphaModel(),
|
|
new EmaCrossAlphaModel()
|
|
));
|
|
|
|
// default models for the rest
|
|
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
|
|
SetExecution(new ImmediateExecutionModel());
|
|
SetRiskManagement(new NullRiskManagementModel());
|
|
}
|
|
|
|
/// <summary>
|
|
/// This is used by the regression test system to indicate if the open source Lean repository has the required data to run this algorithm.
|
|
/// </summary>
|
|
public bool CanRunLocally { get; } = true;
|
|
|
|
/// <summary>
|
|
/// This is used by the regression test system to indicate which languages this algorithm is written in.
|
|
/// </summary>
|
|
public Language[] Languages { get; } = {Language.CSharp, Language.Python};
|
|
|
|
/// <summary>
|
|
/// Data Points count of all timeslices of algorithm
|
|
/// </summary>
|
|
public long DataPoints => 15643;
|
|
|
|
/// <summary>
|
|
/// Data Points count of the algorithm history
|
|
/// </summary>
|
|
public int AlgorithmHistoryDataPoints => 208;
|
|
|
|
/// <summary>
|
|
/// This is used by the regression test system to indicate what the expected statistics are from running the algorithm
|
|
/// </summary>
|
|
public Dictionary<string, string> ExpectedStatistics => new Dictionary<string, string>
|
|
{
|
|
{"Total Trades", "18"},
|
|
{"Average Win", "0.00%"},
|
|
{"Average Loss", "-0.17%"},
|
|
{"Compounding Annual Return", "-37.004%"},
|
|
{"Drawdown", "1.800%"},
|
|
{"Expectancy", "-0.629"},
|
|
{"Net Profit", "-0.589%"},
|
|
{"Sharpe Ratio", "-2.41"},
|
|
{"Probabilistic Sharpe Ratio", "34.293%"},
|
|
{"Loss Rate", "64%"},
|
|
{"Win Rate", "36%"},
|
|
{"Profit-Loss Ratio", "0.02"},
|
|
{"Alpha", "-0.886"},
|
|
{"Beta", "0.35"},
|
|
{"Annual Standard Deviation", "0.08"},
|
|
{"Annual Variance", "0.006"},
|
|
{"Information Ratio", "-14.935"},
|
|
{"Tracking Error", "0.146"},
|
|
{"Treynor Ratio", "-0.549"},
|
|
{"Total Fees", "$41.79"},
|
|
{"Estimated Strategy Capacity", "$4700000.00"},
|
|
{"Lowest Capacity Asset", "AIG R735QTJ8XC9X"},
|
|
{"Portfolio Turnover", "60.76%"},
|
|
{"OrderListHash", "c6d413585d8aa6ac8831563aa71653d5"}
|
|
};
|
|
}
|
|
}
|