forked from QuantConnect/Lean
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMeanReversionLunchBreakAlpha.py
More file actions
137 lines (110 loc) · 6.26 KB
/
Copy pathMeanReversionLunchBreakAlpha.py
File metadata and controls
137 lines (110 loc) · 6.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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.
from clr import AddReference
AddReference("System")
AddReference("QuantConnect.Common")
AddReference("QuantConnect.Indicators")
AddReference("QuantConnect.Algorithm")
AddReference("QuantConnect.Algorithm.Framework")
from System import *
from QuantConnect import *
from QuantConnect.Indicators import *
from QuantConnect.Data.UniverseSelection import *
from QuantConnect.Orders.Fees import ConstantFeeModel
from QuantConnect.Algorithm.Framework.Alphas import *
from QuantConnect.Algorithm.Framework.Portfolio import EqualWeightingPortfolioConstructionModel
from QuantConnect.Algorithm.Framework.Selection import CoarseFundamentalUniverseSelectionModel
#
# Academic research suggests that stock market participants generally place their orders at the market open and close.
# Intraday trading volume is J-Shaped, where the minimum trading volume of the day is during lunch-break. Stocks become
# more volatile as order flow is reduced and tend to mean-revert during lunch-break.
#
# This alpha aims to capture the mean-reversion effect of ETFs during lunch-break by ranking 20 ETFs
# on their return between the close of the previous day to 12:00 the day after and predicting mean-reversion
# in price during lunch-break.
#
# Source: Lunina, V. (June 2011). The Intraday Dynamics of Stock Returns and Trading Activity: Evidence from OMXS 30 (Master's Essay, Lund University).
# Retrieved from http://lup.lub.lu.se/luur/download?func=downloadFile&recordOId=1973850&fileOId=1973852
#
# This alpha is part of the Benchmark Alpha Series created by QuantConnect which are open sourced so the community and client funds can see an example of an alpha.
#
class MeanReversionLunchBreakAlpha(QCAlgorithm):
def Initialize(self):
self.SetStartDate(2018, 1, 1)
self.SetCash(100000)
# Set zero transaction fees
self.SetSecurityInitializer(lambda security: security.SetFeeModel(ConstantFeeModel(0)))
# Use Hourly Data For Simplicity
self.UniverseSettings.Resolution = Resolution.Hour
self.SetUniverseSelection(CoarseFundamentalUniverseSelectionModel(self.CoarseSelectionFunction))
# Use MeanReversionLunchBreakAlphaModel to establish insights
self.SetAlpha(MeanReversionLunchBreakAlphaModel())
# Equally weigh securities in portfolio, based on insights
self.SetPortfolioConstruction(EqualWeightingPortfolioConstructionModel())
# Set Immediate Execution Model
self.SetExecution(ImmediateExecutionModel())
# Set Null Risk Management Model
self.SetRiskManagement(NullRiskManagementModel())
# Sort the data by daily dollar volume and take the top '20' ETFs
def CoarseSelectionFunction(self, coarse):
sortedByDollarVolume = sorted(coarse, key=lambda x: x.DollarVolume, reverse=True)
filtered = [ x.Symbol for x in sortedByDollarVolume if not x.HasFundamentalData ]
return filtered[:20]
class MeanReversionLunchBreakAlphaModel(AlphaModel):
'''Uses the price return between the close of previous day to 12:00 the day after to
predict mean-reversion of stock price during lunch break and creates direction prediction
for insights accordingly.'''
def __init__(self, *args, **kwargs):
lookback = kwargs['lookback'] if 'lookback' in kwargs else 1
self.resolution = Resolution.Hour
self.predictionInterval = Time.Multiply(Extensions.ToTimeSpan(self.resolution), lookback)
self.symbolDataBySymbol = dict()
def Update(self, algorithm, data):
for symbol, symbolData in self.symbolDataBySymbol.items():
if data.Bars.ContainsKey(symbol):
bar = data.Bars.GetValue(symbol)
symbolData.Update(bar.EndTime, bar.Close)
return [] if algorithm.Time.hour != 12 else \
[x.Insight for x in self.symbolDataBySymbol.values()]
def OnSecuritiesChanged(self, algorithm, changes):
for security in changes.RemovedSecurities:
self.symbolDataBySymbol.pop(security.Symbol, None)
# Retrieve price history for all securities in the security universe
# and update the indicators in the SymbolData object
symbols = [x.Symbol for x in changes.AddedSecurities]
history = algorithm.History(symbols, 1, self.resolution)
if history.empty:
algorithm.Debug(f"No data on {algorithm.Time}")
return
history = history.close.unstack(level = 0)
for ticker, values in history.iteritems():
symbol = next((x for x in symbols if str(x) == ticker ), None)
if symbol in self.symbolDataBySymbol or symbol is None: continue
self.symbolDataBySymbol[symbol] = self.SymbolData(symbol, self.predictionInterval)
self.symbolDataBySymbol[symbol].Update(values.index[0], values[0])
class SymbolData:
def __init__(self, symbol, period):
self.symbol = symbol
self.period = period
# Mean value of returns for magnitude prediction
self.meanOfPriceChange = IndicatorExtensions.SMA(RateOfChangePercent(1),3)
# Price change from close price the previous day
self.priceChange = RateOfChangePercent(3)
def Update(self, time, value):
return self.meanOfPriceChange.Update(time, value) and \
self.priceChange.Update(time, value)
@property
def Insight(self):
direction = InsightDirection.Down if self.priceChange.Current.Value > 0 else InsightDirection.Up
margnitude = abs(self.meanOfPriceChange.Current.Value)
return Insight.Price(self.symbol, self.period, direction, margnitude, None)