58793acae8
Build & Test Lean / build (push) Has been cancelled
* Add property for capacity. Remove unused variable * Move SymbolCapacity and CapacityEstimate to common, passed through Symbol to runtime statistics * Add null checks * Remove uninvested and untradable assets from capacty calculations * Add SymbolCapacity influential period * Updates Regression Tests - DelistingEventsAlgorithm - Allows additional contributions from delisted AAA.1 - DelistingFutureOptionRegressionAlgorithm - Removes DC01H12 contributions one month later - FutureOptionBuySellCallIntradayRegressionAlgorithm - Allows additional contributions from future after expiry replacing the contribution of the next contract option - DelistedFutureLiquidateRegressionAlgorithm - FutureOptionCallITMExpiryRegressionAlgorithm - FutureOptionCallITMGreeksExpiryRegressionAlgorithm - FutureOptionPutITMExpiryRegressionAlgorithm - FutureOptionShortCallITMExpiryRegressionAlgorithm - FutureOptionShortPutITMExpiryRegressionAlgorithm - FuturesAndFuturesOptionsExpiryTimeAndLiquidationRegressionAlgorithm - Allows additional contributions from future after expiry - FutureOptionCallOTMExpiryRegressionAlgorithm - FutureOptionPutOTMExpiryRegressionAlgorithm - FutureOptionShortPutOTMExpiryRegressionAlgorithm - IndexOptionCallITMGreeksExpiryRegressionAlgorithm - IndexOptionCallOTMExpiryRegressionAlgorithm - IndexOptionShortCallOTMExpiryRegressionAlgorithm - Allows additional contributions from option after expiry - MACDTrendAlgorithm - Removes contribution when SPY is not invested for over one month - UniverseSelectionRegressionAlgorithm - Allows additional contributions from delisted GOOAV replacing GOOG (new symbols) * Adds Lowest Capacity Asset to Regression Tests * Normalize expected value -0, because -0 is also written to file if updated * Write Symbol.Value for lowestCapacitySymbol or empty string for empty Symbol * Update Regressions * Update 'Lowest Capacity Asset' to Symbol.ID Co-authored-by: Jared Broad <jaredbroad@gmail.com> Co-authored-by: Martin-Molinero <martin@quantconnect.com> Co-authored-by: Colton Sellers <Colton.R.Sellers@gmail.com>
146 lines
5.9 KiB
C#
146 lines
5.9 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 QuantConnect.Algorithm.Framework.Alphas;
|
|
using QuantConnect.Algorithm.Framework.Execution;
|
|
using QuantConnect.Algorithm.Framework.Portfolio;
|
|
using QuantConnect.Algorithm.Framework.Selection;
|
|
using QuantConnect.Brokerages;
|
|
using QuantConnect.Data;
|
|
using QuantConnect.Interfaces;
|
|
using QuantConnect.Orders;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace QuantConnect.Algorithm.CSharp
|
|
{
|
|
/// <summary>
|
|
/// Basic template framework algorithm uses framework components to define the algorithm.
|
|
/// Shows EqualWeightingPortfolioConstructionModel.LongOnly() application
|
|
/// </summary>
|
|
/// <meta name="tag" content="alpha streams" />
|
|
/// <meta name="tag" content="using quantconnect" />
|
|
/// <meta name="tag" content="algorithm framework" />
|
|
public class LongOnlyAlphaStreamAlgorithm : QCAlgorithm, IRegressionAlgorithmDefinition
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
// 1. Required:
|
|
SetStartDate(2013, 10, 07);
|
|
SetEndDate(2013, 10, 11);
|
|
|
|
// 2. Required: Alpha Streams Models:
|
|
SetBrokerageModel(BrokerageName.AlphaStreams);
|
|
|
|
// 3. Required: Significant AUM Capacity
|
|
SetCash(1000000);
|
|
|
|
// Only SPY will be traded
|
|
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel(Resolution.Daily, PortfolioBias.Long));
|
|
SetExecution(new ImmediateExecutionModel());
|
|
|
|
// set algorithm framework models
|
|
SetUniverseSelection(
|
|
new ManualUniverseSelectionModel(
|
|
new[] {"SPY", "IBM"}
|
|
.Select(x => QuantConnect.Symbol.Create(x, SecurityType.Equity, Market.USA))
|
|
)
|
|
);
|
|
}
|
|
|
|
public override void OnData(Slice slice)
|
|
{
|
|
if (Portfolio.Invested) return;
|
|
|
|
EmitInsights(
|
|
Insight.Price("SPY", TimeSpan.FromDays(1), InsightDirection.Up),
|
|
Insight.Price("IBM", TimeSpan.FromDays(1), InsightDirection.Down)
|
|
);
|
|
}
|
|
|
|
public override void OnOrderEvent(OrderEvent orderEvent)
|
|
{
|
|
if (orderEvent.Status.IsFill())
|
|
{
|
|
if (Securities[orderEvent.Symbol].Holdings.IsShort)
|
|
{
|
|
throw new Exception("Invalid position, should not be short");
|
|
}
|
|
Debug($"Purchased Stock: {orderEvent}");
|
|
}
|
|
}
|
|
|
|
/// <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>
|
|
/// 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", "9"},
|
|
{"Average Win", "0.99%"},
|
|
{"Average Loss", "-0.60%"},
|
|
{"Compounding Annual Return", "216.678%"},
|
|
{"Drawdown", "2.300%"},
|
|
{"Expectancy", "0.318"},
|
|
{"Net Profit", "1.485%"},
|
|
{"Sharpe Ratio", "7.299"},
|
|
{"Probabilistic Sharpe Ratio", "64.957%"},
|
|
{"Loss Rate", "50%"},
|
|
{"Win Rate", "50%"},
|
|
{"Profit-Loss Ratio", "1.64"},
|
|
{"Alpha", "-0.36"},
|
|
{"Beta", "1.003"},
|
|
{"Annual Standard Deviation", "0.223"},
|
|
{"Annual Variance", "0.05"},
|
|
{"Information Ratio", "-100.088"},
|
|
{"Tracking Error", "0.004"},
|
|
{"Treynor Ratio", "1.624"},
|
|
{"Total Fees", "$309.75"},
|
|
{"Estimated Strategy Capacity", "$13000000.00"},
|
|
{"Lowest Capacity Asset", "SPY R735QTJ8XC9X"},
|
|
{"Fitness Score", "0.999"},
|
|
{"Kelly Criterion Estimate", "-6.933"},
|
|
{"Kelly Criterion Probability Value", "0.593"},
|
|
{"Sortino Ratio", "79228162514264337593543950335"},
|
|
{"Return Over Maximum Drawdown", "68.722"},
|
|
{"Portfolio Turnover", "1.741"},
|
|
{"Total Insights Generated", "10"},
|
|
{"Total Insights Closed", "8"},
|
|
{"Total Insights Analysis Completed", "8"},
|
|
{"Long Insight Count", "5"},
|
|
{"Short Insight Count", "5"},
|
|
{"Long/Short Ratio", "100%"},
|
|
{"Estimated Monthly Alpha Value", "$71700.1986"},
|
|
{"Total Accumulated Estimated Alpha Value", "$11551.6987"},
|
|
{"Mean Population Estimated Insight Value", "$1443.9623"},
|
|
{"Mean Population Direction", "62.5%"},
|
|
{"Mean Population Magnitude", "0%"},
|
|
{"Rolling Averaged Population Direction", "73.1163%"},
|
|
{"Rolling Averaged Population Magnitude", "0%"},
|
|
{"OrderListHash", "79a973155c0106b60249931daa89c54b"}
|
|
};
|
|
}
|
|
}
|