Trading strategies, research, and tutorials that you can clone into your deployment.
Introductory tutorial for Moonshot demonstrating data collection, universe selection, and backtesting of an end-of-day momentum strategy. Uses free sample data.
quantrocket codeload clone 'moonshot-intro'
Introductory tutorial for Zipline demonstrating data collection, interactive research, and backtesting of a momentum strategy for equities. Uses free sample data.
quantrocket codeload clone 'zipline-intro'
In-depth walkthrough of Pipeline, an API for filtering and performing computations on large universes of securities. The Pipeline API is part of Zipline but can also be used on a standalone basis.
quantrocket codeload clone 'pipeline-tutorial'
Learn quantitative finance with this comprehensive lecture series. Adapted for QuantRocket from the Quantopian Lecture Series. Most lectures use free sample data.
quantrocket codeload clone 'quant-finance-lectures'
Pairs trading strategy for Moonshot that includes a research pipeline for identifying and selecting pairs. Tests all possible pairs in a universe for cointegration using the Johansen test, then runs in-sample backtests on all cointegrating pairs, then runs an out-of-sample backtest on the 5 best performing pairs. Calculates daily hedge ratios using the Johansen test and times entries and exits using Bollinger Bands.
quantrocket codeload clone 'pairs-pipeline'
Intraday FX strategy that exploits the tendency of currencies to depreciate during local business hours and appreciate during foreign business hours. Uses EUR.USD with hourly data from Interactive Brokers. Runs in Moonshot. Interactive Brokers account required but no QuantRocket subscription required.
quantrocket codeload clone 'fx-bizday'
Intraday Zipline strategy for US stocks that sells stocks which gap below their moving average after previously trading above it. Demonstrates live trading with Interactive Brokers or Alpaca.
quantrocket codeload clone 'sell-gap'
Machine learning strategy that trains the model using 'everything and the kitchen sink': fundamentals, technical indicators, returns, price levels, volume and volatility spikes, liquidity, market breadth, and more. Runs in Moonshot. Utilizes data from Sharadar and Interactive Brokers.
quantrocket codeload clone 'kitchensink-ml'
Moonshot strategy that shorts stocks that fell 10% or more the previous day. Demonstrates how to run a multi-country backtest to find where an anomaly works best. Uses global equities data from EDI.
quantrocket codeload clone 'dead-cat-drop'
Value strategy for US stocks modeled on Alpha Architect's QVAL ETF, using enterprise multiple and Piotroski F-Score to target cheap, high-quality stocks. Utilizes Sharadar fundamental and price data. Runs in Moonshot.
quantrocket codeload clone 'qval'
Intraday trading strategy for futures calendar spreads. Uses crude oil futures and 1-minute bid/ask bars from Interactive Brokers with a Bollinger Band mean reversion strategy. Runs in Moonshot. Demonstrates using exchange native spreads for live/paper trading, and non-native spreads for backtesting. Interactive Brokers account required but no QuantRocket subscription required for backtesting.
quantrocket codeload clone 'calspread'
Long-only momentum strategy modeled on Alpha Architect's QMOM ETF, selecting stocks with the smoothest momentum and rebalancing the portfolio before quarter end to capture a window-dressing seasonality effect.
quantrocket codeload clone 'qmom'
Value/Momentum/Trend strategy modeled on Alpha Architect's VMOT ETF. This repository provides the trend strategy and walks through backtesting the value, momentum, and trend strategies in tandem. For the value and momentum strategies, see the qval
and qmom
repositories.
quantrocket codeload clone 'vmot'
Intraday momentum strategy that buys (sells) leveraged ETFs late in the trading session following a significant intraday gain (loss) and holds until the close. From Ernie Chan's book Algorithmic Trading. Uses 1-minute data from QuantRocket. Runs in Moonshot.
quantrocket codeload clone 'trend-day'
Intraday momentum strategy that buys (sells) the S&P 500 when the first half hour return and penultimate half hour return are both positive (negative). Uses VIX filter to restrict strategy to high volatility regimes. Uses 1-minute SPY data from QuantRocket and 30-minute VIX data from Interactive Brokers. Runs in Moonshot.
quantrocket codeload clone 'first-last'
Comparative analysis of stock market characteristics for 17 countries, including number of listings, short sale availability, volatility, distribution of sectors, etc.
quantrocket codeload clone 'global-market-profiles'
Equal-weighted and dollar-volume-weighted benchmark strategies for Moonshot.
quantrocket codeload clone 'benchmark'
Dual moving average crossover strategy for backtrader
quantrocket codeload clone 'backtrader-dma'