| Overall Statistics |
|
Total Trades 1239 Average Win 0.95% Average Loss -0.12% Compounding Annual Return 22.563% Drawdown 30.600% Expectancy 3.235 Net Profit 838.367% Sharpe Ratio 0.988 Probabilistic Sharpe Ratio 36.852% Loss Rate 53% Win Rate 47% Profit-Loss Ratio 8.10 Alpha 0.077 Beta 0.802 Annual Standard Deviation 0.17 Annual Variance 0.029 Information Ratio 0.424 Tracking Error 0.13 Treynor Ratio 0.209 Total Fees $2835.60 Estimated Strategy Capacity $40000000.00 Lowest Capacity Asset GOOCV VP83T1ZUHROL |
// Sigma Mean Reversion
// --------------------
// Symbols which have a sudden change in momentum are likely to revert to historical momentum
//
// Measure historical 90d ROC { t -> (s[t] - s[t-90])/s[t-90] }
// Use historical 90d ROC to predict future 90d ROC
// When local (1-5d) ROC is extreme against expected future 90d ROC, anticipate reversion
using System;
using System.Collections.Generic;
using System.Linq;
using QuantConnect;
using QuantConnect.Algorithm;
using QuantConnect.Data;
using QuantConnect.Indicators;
using Simpl.QCParams;
namespace SigmaMR {
public class SigmaMeanReversion : QCAlgorithm {
readonly Dictionary<Symbol, SymbolData> SymbolData = new();
decimal _stopLossPercent;
decimal _takeProfitPercent;
public override void Initialize() {
SetStartDate(2011, 1, 1);
SetEndDate(2022, 1, 1);
SetCash(100000);
var p = new ParsersForAlgo(this);
var leverage = p.Decimal("Leverage").FetchOrDie();
_takeProfitPercent = p.Decimal("TakeProfit").FetchOrDie();
_stopLossPercent = p.Decimal("StopLoss").FetchOrDie();
var algoParams = new SymbolData.Parameters(
ExitAtMidpoint: p.BoolOfInt("MidpointExit").FetchOrDie(),
RocPeriodDays: p.Int("ROCPeriodDays").FetchOrDie(),
RocEstimationDays: p.Int("TrendEstPeriodDays").FetchOrDie(),
RocSignalSmoothingDays: p.Int("SignalSmoothPeriodDays").FetchOrDie(),
UpperExtremeSigmas: p.Decimal("UpperSigma").FetchOrDie(),
LowerExtremeSigmas: p.Decimal("LowerSigma").FetchOrDie()
);
// var tickers = new[] { "XLK", "XLE", "XLF", "XLV", "XLY", "XLP", "XLI", "XLB", "XLU" };
// var tickers = new[] { "XLK", "TSLA", "AAPL" };
var tickers = new[] { "AAPL", "MSFT", "AMZN", "FB", "TSLA", "NVDA", "GOOG", "GOOGL", "AVGO", "ADBE" };
foreach (var ticker in tickers) {
var symbol = AddEquity(ticker, Resolution.Minute).Symbol;
var data = new SymbolData(this, symbol, algoParams, allocation: leverage * 0.99m / tickers.Length);
SymbolData[symbol] = data;
}
SetWarmup(SymbolData.Values.Select(dat => dat.WarmUpPeriodDays).Max(), Resolution.Daily);
}
public override void OnData(Slice data) {
if (_takeProfitPercent <= 0m && _stopLossPercent <= 0m) return;
// take profit and stop loss
foreach (var (symbol, _) in Portfolio.Where(p => p.Value.Invested)) {
if (_takeProfitPercent > 0m && Portfolio[symbol].UnrealizedProfitPercent > _takeProfitPercent)
Liquidate(symbol, $"TGT -- PNL%: {Portfolio[symbol].UnrealizedProfitPercent}");
if (_stopLossPercent > 0m && Portfolio[symbol].UnrealizedProfitPercent < -_stopLossPercent)
Liquidate(symbol, $"STP -- PNL%: {Portfolio[symbol].UnrealizedProfitPercent}");
}
}
}
class SymbolData {
readonly QCAlgorithm _algo;
readonly Symbol _symbol;
readonly decimal _allocation;
readonly Parameters _parameters;
readonly IndicatorBase[] _indicators;
public record Parameters(
int RocPeriodDays,
int RocEstimationDays,
int RocSignalSmoothingDays,
bool ExitAtMidpoint,
decimal UpperExtremeSigmas,
decimal LowerExtremeSigmas
);
public IndicatorBase<IndicatorDataPoint> Momentum { get; }
public IndicatorBase<IndicatorDataPoint> Signal { get; }
public IndicatorBase<IndicatorDataPoint> StdDev { get; }
public IndicatorBase<IndicatorDataPoint> BandMid { get; }
public IndicatorBase<IndicatorDataPoint> BandUpper { get; }
public IndicatorBase<IndicatorDataPoint> BandLower { get; }
public bool LongEntry => Signal < BandLower;
public bool ShortEntry => Signal > BandUpper;
public bool LongExit => Signal > BandMid && _algo.Portfolio[_symbol].IsLong;
public bool ShortExit => Signal < BandMid && _algo.Portfolio[_symbol].IsShort;
public bool IsReady => _indicators.All(ind => ind.IsReady);
public int WarmUpPeriodDays => _parameters.RocPeriodDays +
Math.Max(_parameters.RocSignalSmoothingDays, _parameters.RocEstimationDays);
public SymbolData(QCAlgorithm algo, Symbol symbol, Parameters parameters, decimal allocation) {
_algo = algo;
_symbol = symbol;
_allocation = allocation;
_parameters = parameters;
Momentum = new RateOfChange(_symbol, _parameters.RocPeriodDays);
Signal = new SimpleMovingAverage(_parameters.RocSignalSmoothingDays).Of(Momentum);
StdDev = new StandardDeviation(_parameters.RocEstimationDays).Of(Momentum);
BandMid = new SimpleMovingAverage(_parameters.RocEstimationDays).Of(Momentum);
BandUpper = BandMid.Plus(StdDev.Times(_parameters.UpperExtremeSigmas));
BandLower = BandMid.Minus(StdDev.Times(_parameters.LowerExtremeSigmas));
_indicators = new IndicatorBase[] { Momentum, Signal, StdDev, BandMid, BandUpper, BandLower };
// All indicators are driven off of the core Momentum indicator, so it's the only one that needs to be plugged in
_algo.RegisterIndicator(_symbol, Momentum, Resolution.Daily);
// Schedule trading logic each day
_algo.Schedule.On(
name: $"Trade {_symbol}",
dateRule: _algo.DateRules.EveryDay(_symbol),
timeRule: _algo.TimeRules.BeforeMarketClose(_symbol, 10),
callback: TradeLogic
);
}
void TradeLogic(string message, DateTime time) {
_algo.Debug($"Trading on {_symbol} at {time}");
Entry();
Exit();
}
public void Plot() {
_algo?.Plot($"{_symbol} Data", "Raw", Momentum);
_algo?.Plot($"{_symbol} Data", "Signal", Signal);
_algo?.Plot($"{_symbol} Data", "Mid", BandMid);
_algo?.Plot($"{_symbol} Data", "Upper", BandUpper);
_algo?.Plot($"{_symbol} Data", "Lower", BandLower);
}
void Entry() {
if (LongEntry) {
_algo.Debug($"Long Entry ({_symbol}) -- Cross below lower band {Signal} < {BandLower}");
_algo.SetHoldings(_symbol, _allocation, tag: "MA Cross LE");
}
else if (ShortEntry) {
_algo.Debug($"Short Entry ({_symbol}) -- Cross above upper band {Signal} < {BandUpper}");
_algo.SetHoldings(_symbol, -_allocation, tag: "MA Cross SE");
}
}
void Exit() {
if (!_parameters.ExitAtMidpoint) return;
if (LongExit) {
_algo.Debug($"Long Exit ({_symbol}) -- Cross above middle band when long {Signal} > {BandMid}");
_algo.Liquidate(_symbol, "MA Cross LX");
}
if (ShortExit) {
_algo.Debug($"Short Exit ({_symbol}) -- Cross below middle band when short {Signal} < {BandMid}");
_algo.Liquidate(_symbol, "MA Cross SX");
}
}
}
}using System;
using QuantConnect.Algorithm;
namespace Simpl.QCParams {
/// <summary>A parsing function like <see cref="int.TryParse(string?, out int)"/>.</summary>
/// <typeparam name="S">The type of the source value, often <see cref="string"/>.</typeparam>
/// <typeparam name="T">The type of the result value.</typeparam>
public delegate bool TryParseFunc<in S, T>(S msg, out T tgt);
/// <summary>
/// An object responsible for generating a value via sourcing it and enumerating one or more parsing steps. May fail and
/// return a default value or throw an error.
/// </summary>
/// <typeparam name="A">The type this parse results in</typeparam>
public interface IParser<A> {
public string Root { get; }
public A FetchVal(A orElse = default!) => Fetch(orElse).Value;
public (bool Found, A Value) Fetch(A orElse = default!);
public A FetchOrDie() {
var (found, value) = Fetch();
if (!found) throw new Exception($"Could not find/parse parameter [{Root}]");
return value;
}
public IParser<B> Map<B>(Func<A, B> map) => new MappedImpl<A, B>(this, map);
public IParser<B> Lift<B>(TryParseFunc<A, B> tryParseFunc) =>
new WithTryParse<A, B>(this, tryParseFunc);
}
// ------------------------------------------------------------------------
// private impls
record MappedImpl<A, B>(IParser<A> First, Func<A, B> Map) : IParser<B> {
string IParser<B>.Root => First.Root;
public (bool Found, B Value) Fetch(B orElse) {
var (found, value) = First.Fetch();
return found ? (true, Map(value)) : (false, orElse);
}
}
record WithTryParse<S, T>(IParser<S> First, TryParseFunc<S, T> TryParseFunc) : IParser<T> {
string IParser<T>.Root => First.Root;
public (bool Found, T Value) Fetch(T orElse) {
var (found, value) = First.Fetch();
if (!found) return (false, orElse);
return TryParseFunc(value, out var toReturn) ? (true, toReturn) : (false, orElse);
}
}
record RawImpl(QCAlgorithm Algo, string Name) : IParser<string> {
string IParser<string>.Root => Name;
public (bool Found, string Value) Fetch(string orElse) {
var tmp = Algo.GetParameter(Name);
return tmp is not null ? (true, tmp) : (false, orElse);
}
}
}using QuantConnect.Algorithm;
namespace Simpl.QCParams {
/// <summary>
/// Helpers for creating <see cref="IParser{A}"/> values against a specified <see cref="QCAlgorithm"/>.
/// </summary>
/// <param name="Algo"></param>
public record ParsersForAlgo(QCAlgorithm Algo) {
public IParser<string> String(string name) => new RawImpl(Algo, name);
public IParser<int> Int(string name) => String(name).Lift<int>(int.TryParse);
public IParser<bool> BoolOfInt(string name) => Int(name).Lift<bool>(BoolFromInt);
public IParser<decimal> Decimal(string name) => String(name).Lift<decimal>(decimal.TryParse);
static bool BoolFromInt(int toParse, out bool parsed) {
switch (toParse) {
case 0:
parsed = false;
return true;
case 1:
parsed = true;
return true;
default:
parsed = default;
return false;
}
}
}
}