├── .gitignore ├── 00 Home └── 01 Home │ └── 01 Home.html ├── 01 API Tutorials ├── 00 Introduction │ └── 00 Introduction.html ├── 01 Consolidating Data to Build Bars │ └── 01 Consolidating Data to Build Bars.html ├── 02 Scheduled Events │ └── 02 Scheduled Events.html ├── 03 Tracking and Managing Orders │ ├── 01 Overview.html │ ├── 02 Updating Orders.html │ └── 03 Full Python Example.html └── 04 Using Options in QuantConnect │ ├── 01 Introduction.html │ ├── 02 Add Options.html │ ├── 03 Filter Contracts.html │ ├── 04 Select Contracts.html │ ├── 05 Algorithm.html │ └── 06 Summary.html ├── 02 Tutorial Series ├── 00 Introduction │ └── Introduction.html ├── 01 Introduction to Financial Python │ ├── 00 About.html │ ├── 01 What Will I learn %3F.html │ └── 02 Tutorials.html ├── 02 Introduction to Options │ ├── 00 About.html │ ├── 01 What Will I learn %3F.html │ └── 02 Tutorials.html └── 03 Applied Options │ ├── 00 About.html │ ├── 01 What Will I learn %3F.html │ └── 02 Tutorials.html ├── 03 Open Source ├── 00 Introduction │ └── Introduction.html ├── 01 Debugging Python │ ├── 00.html │ ├── 01 Introduction.html │ ├── 02 Installing LEAN with Python.html │ ├── 03 Method 1 - PTVSD.html │ ├── 04 Method 2 - PDB.html │ ├── 05 Method 3 - VisualStudio Debugger.html │ ├── 06 Limitations.html │ └── 07 Summary.html ├── 03 Using the API File Provider │ └── 02 How do I use the API File Provider.html ├── 04 Lean Report Creator │ ├── 00.html │ ├── 01 Introduction.html │ ├── 02 Creating a Report.html │ ├── 03 Source Backtest.html │ ├── 04 Customizing Report Contents.html │ └── 05 Interpreting Report Charts.html ├── 05 Brokerage Development Guide │ ├── 00.html │ ├── 01 Introduction.html │ ├── 02 Guide Contents.html │ ├── 03 Step 1%3A Laying a Foundation.html │ ├── 04 Step 2%3A Creating the Brokerage.html │ ├── 05 Step 3%3A Translating Symbol Conventions.html │ ├── 06 Step 4%3A Describe Brokerage Limitations.html │ ├── 07 Step 5%3A Enable Live Data Streaming.html │ ├── 08 Step 6%3A Enable Serving Historical Data.html │ ├── 09 Step 7%3A Downloading Data.html │ ├── 10 Step 8%3A Brokerage Fee Structures.html │ └── 11 Step 9%3A Updating Algorithm API.html └── 06 Generating Random Backtest Data │ ├── 00.html │ ├── 01 Introduction.html │ ├── 02 Using the Random Data Generator.html │ ├── 03 Command Parameters.html │ ├── 04 Supported Assets and Resolutions.html │ └── 05 Final Notes.html ├── 04 Strategy Library ├── 00 Strategy Library │ └── 01 Strategy Library.php ├── 01 CAPM Alpha Ranking Strategy on Dow 30 Companies │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 CAPM Theory.html │ ├── 02 资本资产定价模型(CAPM)理论.cn.html │ ├── 03 Method.html │ ├── 03 方法.cn.html │ ├── 04 Summary.html │ ├── 04 总结.cn.html │ ├── 05 Algorithm.html │ ├── 05 算法.cn.html │ ├── 06 References.html │ └── 06 参考文献.cn.html ├── 02 Combining Mean Reversion and Momentum in Forex Market │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Results.html │ ├── 05 Summary.html │ ├── 06 Algorithm.html │ └── 07 References.html ├── 03 Pairs Trading-Copula vs Cointegration │ ├── 01 Abstract.html │ ├── 01 摘要.cn.html │ ├── 02 Framework of Copula.html │ ├── 02 联系框架.cn.html │ ├── 03 Part I - Copula Method.html │ ├── 03 第I部分 – 联系法.cn.html │ ├── 04 Part II - Cointegration Method.html │ ├── 04 第II部分 – 协整法.cn.html │ ├── 05 Summary.html │ ├── 05 总结.cn.html │ ├── 06 Algorithm.html │ ├── 06 算法.cn.html │ ├── 07 References.html │ └── 07 参考文献.cn.html ├── 04 The Dynamic Breakout II Strategy │ ├── 01 Abstract.html │ ├── 02 Method.html │ ├── 03 Conclusion.html │ ├── 04 Algorithm.html │ └── 05 References.html ├── 05 Dual Thrust Trading Algorithm │ ├── 01 Abstract.html │ ├── 02 Method.html │ ├── 03 Conclusion.html │ ├── 04 Algorithm.html │ └── 05 References.html ├── 06 Can Crude Oil Predict Equity Returns │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Method.html │ ├── 04 Summary.html │ ├── 05 Algorithm.html │ └── 06 References.html ├── 07 Intraday Dynamic Pairs Trading using Correlation and Cointegration Approach │ ├── 01 Abstract.html │ ├── 01 摘要.cn.html │ ├── 02 Introduction.html │ ├── 02 简介.cn.html │ ├── 03 Method.html │ ├── 03 方法.cn.html │ ├── 04 Result.html │ ├── 04 结果.cn.html │ ├── 05 Summary.html │ ├── 05 总结.cn.html │ ├── 06 Algorithm.html │ ├── 06 算法.cn.html │ ├── 07 References.html │ └── 07 参考文献.cn.html ├── 08 The Momentum Strategy Based on the Low Frequency Component of Forex Market │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Summary.html │ ├── 05 Algorithm.html │ └── 06 References.html ├── 09 Stock Selection Strategy Based on Fundamental Factors │ ├── 01 Abstract.html │ ├── 01 摘要.cn.html │ ├── 02 Factor Selection.html │ ├── 02 要素选择.cn.html │ ├── 03 Stock Selection.html │ ├── 03 股票选择.cn.html │ ├── 04 Algorithm.html │ ├── 04 算法.cn.html │ ├── 05 References.html │ └── 05 参考文献.cn.html ├── 10 Short-Term Reversal Strategy in Stocks │ ├── 01 Abstract.html │ ├── 02 Method.html │ ├── 04 Algorithm.html │ ├── 05 Relative Performance.html │ ├── 07 Market & Competition Qualification.html │ ├── 08 Conclusion.html │ └── 09 References.html ├── 100 Trading with WTI BRENT Spread │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Algorithm.html │ ├── 03 算法.cn.html │ ├── 04 Source.html │ └── 04 来源.cn.html ├── 102 Option Expiration Week Effect │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 1023 Intraday Arbitrage Between Index ETFs │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Relative Performance.html │ ├── 06 Market & Competition Qualification.html │ ├── 07 Conclusion.html │ └── 08 References.html ├── 1024 Forecasting Stock Prices using a Temporal CNN Model │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Results.html │ └── 06 References.html ├── 1025 Leveraged ETFs with Systematic Risk Management │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Results.html │ └── 06 References.html ├── 1026 Intraday ETF Momentum │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Conclusion.html │ └── 06 References.html ├── 1027 Using News Sentiment to Predict Price Direction of Drug Manufacturers │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Conclusion.html │ └── 06 References.html ├── 1028 Ichimoku Clouds in the Energy Sector │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Relative Performance.html │ ├── 06 Market & Competition Qualification.html │ ├── 07 Conclusion.html │ └── 08 References.html ├── 1029 Optimal Pairs Trading │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Video Walkthrough.html │ ├── 06 Results.html │ └── 07 References.html ├── 1030 G-Score Investing │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Results.html │ └── 06 References.html ├── 1031 SVM Wavelet Forecasting │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Results.html │ └── 06 References.html ├── 1033 Gradient Boosting Model │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Method.html │ ├── 04 Algorithm.html │ ├── 05 Relative Performance.html │ ├── 06 Market & Competition Qualification.html │ ├── 07 Conclusion.html │ └── 08 References.html ├── 1036 Gaussian Naive Bayes Model │ ├── 01 Abstract.html │ ├── 02 Background.html │ ├── 03 Video Walkthrough.html │ ├── 04 Method.html │ ├── 05 Algorithm.html │ ├── 06 Relative Performance.html │ ├── 07 Market & Competition Qualification.html │ ├── 08 Conclusion.html │ └── 09 References.html ├── 11 Fundamental Factor Long Short Strategy │ ├── 01 Introduction.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ ├── 04 Algorithm.html │ └── 05 References.html ├── 113 January Barometer │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 114 January Effect in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 118 Time Series Momentum Effect │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 12 Asset Class Trend Following │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 125 12 Month Cycle in Cross-Section of Stocks Returns │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 13 Asset Class Momentum │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 136 Residual Momentum │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 References.html ├── 14 Sector Momentum │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 15 Short Term Reversal │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 152 Momentum Effect in REITs │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 155 Momentum and Reversal Combined with Volatility Effect in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 16 Overnight Anomaly │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 162 Momentum Effect in Stocks in Small Portfolios │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Algorithm.html │ ├── 03 算法.cn.html │ ├── 04 Source.html │ └── 04 来源.cn.html ├── 17 Forex Momentum │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 18 Volatility Effect in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 19 Pairs Trading with Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 198 Exploiting Term Structure of VIX Futures │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 199 ROA Effect within Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 20 Forex Carry Trade │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Algorithm.html │ ├── 03 算法.cn.html │ ├── 04 Source.html │ └── 04 来源.cn.html ├── 207 Value Effect within Countries │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 21 Momentum Effect in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 211 Mean-Reversion Statistical Arbitrage Strategy in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Results.html │ ├── 04 Algorithm.html │ └── 05 Reference.html ├── 22 Momentum Effect in Country Equity Indexes │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Conclusion.html │ ├── 03 结论.cn.html │ ├── 04 Algorithm.html │ ├── 04 算法.cn.html │ ├── 05 Source.html │ └── 05 来源.cn.html ├── 229 Earnings Quality Factor │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 23 Mean Reversion Effect in Country Equity Indexes │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 24 Liquidity Effect in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 25 Volatility Risk Premium Effect │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 26 Quantpedia │ └── 02 Quantpedia.php ├── 269 Seasonality Effect based on Same-Calendar Month Returns │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Results.html │ ├── 04 Algorithm.html │ └── 05 Reference.html ├── 27 Momentum Effect in Commodities Futures │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 270 Risk Premia in Forex Markets │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Results.html │ ├── 04 Algorithm.html │ └── 05 Reference.html ├── 271 Price and Earning Momentum │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Results.html │ ├── 04 Algorithm.html │ └── 05 Reference.html ├── 28 Small Capitalization Stocks Premium Anomaly │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 29 Term Structure Effect in Commodities │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ ├── 04 References.html │ └── 05 Source.html ├── 30 Momentum Effect Combined with Term Structure in Commodities │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 31 Book-to-Market Value Anomaly │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ ├── 04 Summary.html │ └── 05 Source.html ├── 32 Gold Market Timing │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 33 Paired Switching │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 34 Momentum-Short Term Reversal Strategy │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 35 Turn of the Month in Equity Indexes │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 353 Fama French Five Factors │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Results.html │ ├── 04 Algorithm.html │ └── 05 References.html ├── 354 Expected Idiosyncratic Skewness │ ├── 01 Abstract.html │ ├── 02 Theory.html │ ├── 03 Data Description.html │ ├── 04 Method.html │ ├── 05 Conclusion and Future Work.html │ ├── 06 Algorithm.html │ ├── 07 References.html │ └── F-F_Research_Data_Factors_daily.CSV ├── 355 Standardized Unexpected Earnings │ ├── 01 Abstract.html │ ├── 02 Theory.html │ ├── 03 Method.html │ ├── 04 Conclusion and Future Work.html │ ├── 05 Algorithm.html │ └── 06 References.html ├── 356 Improved Momentum Strategy on Commodities Futures │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 TSMOM-CF Theory.html │ ├── 04 Method.html │ ├── 05 Summary.html │ ├── 06 Algorithm.html │ └── 07 References.html ├── 357 Commodities Futures Trend Following │ ├── 01 Abstract.html │ ├── 02 Introduction.html │ ├── 03 Method.html │ ├── 04 Summary.html │ ├── 05 Algorithm.html │ └── 06 References.html ├── 36 Sentiment and Style Rotation Effect in Stocks │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Algorithm.html │ ├── 03 算法.cn.html │ ├── 04 Source.html │ └── 04 来源.cn.html ├── 37 Momentum and State of Market Filters │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 38 Accrual Anomaly │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 39 Asset Growth Effect │ ├── 01 Introduction.html │ ├── 01 简介.cn.html │ ├── 02 Method.html │ ├── 02 方法.cn.html │ ├── 03 Algorithm.html │ ├── 03 算法.cn.html │ ├── 04 Source.html │ └── 04 来源.cn.html ├── 40 Pairs Trading with Country ETFs │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 58 VIX Predicts Stock Index Returns │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 61 Lunar Cycle in Equity Market │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 66 Combining Momentum Effect with Volume │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 71 Short Term Reversal with Futures │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 77 Beta Factors in Stocks │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 78 Beta Factor in Country Equity Indexes │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 83 Pre-Holiday Effect │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html ├── 85 Momentum in Mutual Fund Returns │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ ├── 04 Relative Performance.html │ ├── 05 Market & Competition Qualification.html │ ├── 06 Conclusion.html │ └── 07 References.html ├── 91 Momentum and Style Rotation Effect │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ └── 04 Source.html └── 92 Price Earnings Anomaly │ ├── 01 Introduction.html │ ├── 02 Method.html │ ├── 03 Algorithm.html │ ├── 04 Summary.html │ └── 05 References.html ├── 05 Introduction to Financial Python[] ├── 01 Data Types and Data Structures │ ├── 01 Data Types and Data Structures.ipynb │ ├── 01 Introduction.html │ ├── 02 Basic Variable Types.html │ ├── 03 Basic Math Operations.html │ ├── 04 Data Collections.html │ ├── 05 Common String Operations.html │ └── 06 Summary.html ├── 02 Logical Operations and Loops │ ├── 01 Introduction.html │ ├── 02 Logical Operations and Loops.ipynb │ ├── 02 Logical Operations.html │ ├── 03 If Statement.html │ ├── 04 Loop Structure.html │ ├── 05 List Comprehension.html │ └── 06 Summary.html ├── 03 Functions and Objective-Oriented Programming │ ├── 01 Introduction.html │ ├── 02 Functions.html │ ├── 03 Built-in Function.html │ ├── 03 Functions and Objective-Oriented Programming.ipynb │ ├── 04 Object-Oriented Programming.html │ └── 05 Summary.html ├── 04 NumPy and Basic Pandas │ ├── 01 Introduction.html │ ├── 02 NumPy.html │ ├── 03 Pandas.html │ ├── 04 NumPy and Basic Pandas.ipynb │ └── 04 Summary.html ├── 05 Pandas-Resampling and DataFrame │ ├── 01 Introduction.html │ ├── 02 Fetching Data.html │ ├── 03 Resampling.html │ ├── 04 DataFrame.html │ ├── 05 Pandas-Resampling and DataFrame.ipynb │ └── 05 Summary.html ├── 06 Rate of Return, Mean and Variance │ ├── 01 Introduction.html │ ├── 02 Rate of Return.html │ ├── 03 Mean.html │ ├── 04 Variance and Standard Deviation.html │ ├── 05 Summary.html │ └── 06 Rate of Return, Mean and Variance.ipynb ├── 07 Random Variables and Distributions │ ├── 01 Introduction.html │ ├── 02 Random Variables.html │ ├── 03 Distributions.html │ ├── 04 Normal Distribution.html │ ├── 05 Summary.html │ └── 07 Random Variable and Distributions.ipynb ├── 08 Confidence Interval and Hypothesis Testing │ ├── 01 Introduction.html │ ├── 02 Confidence Interval.html │ ├── 03 Hypothesis testing.html │ ├── 04 Summary.html │ └── 08 Confidence Interval and Hypothesis Testing.ipynb ├── 09 Simple Linear Regression │ ├── 01 Introduction.html │ ├── 02 Slope and Intercept.html │ ├── 03 Python Implementation.html │ ├── 04 Parameter Significance.html │ ├── 05 Model Significance.html │ ├── 06 Summary.html │ └── 09 Simple Linear Regression.ipynb ├── 10 Multiple Linear Regression │ ├── 01 Introduction.html │ ├── 02 Python Implementation.html │ ├── 03 Model Significance Test.html │ ├── 04 Residual Analysis.html │ ├── 05 Summary.html │ ├── 06 References.html │ └── 10 Multiple Linear Regression.ipynb ├── 11 Linear Algebra │ ├── 01 Introduction.html │ ├── 02 Vectors.html │ ├── 03 Matrices.html │ ├── 04 Matrix Multiplication.html │ ├── 05 Inverse.html │ ├── 06 Linear Equations.html │ ├── 07 Summary.html │ └── 11 Linear Algebra.ipynb ├── 12 Modern Portfolio Theory │ ├── 01 Introduction.html │ ├── 02 Risk Aversion.html │ ├── 03 Portfolio.html │ ├── 04 Mean-Variance Analysis.html │ ├── 05 Summary.html │ ├── 06 Algorithm.html │ └── 12 Modern Portfolio Theory.ipynb ├── 13 Market Risk │ ├── 01 Introduction.html │ ├── 02 Capital Asset Pricing Model.html │ ├── 03 Computing beta in Practice.html │ ├── 04 Market-Neutral.html │ ├── 05 Summary.html │ ├── 06 Algorithm.html │ └── 13 Market Risk.ipynb └── 14 Fama-French Multi-Factor Models │ ├── 01 Introduction.html │ ├── 02 Fama-French Three-Factor Model.html │ ├── 03 Model Test.html │ ├── 04 Factor Returns.html │ ├── 05 Summary.html │ ├── 06 Algorithm.html │ ├── 07 References.html │ └── 14 Fama-French Multi-Factor Models.ipynb ├── 06 Introduction to Options[] ├── 01 General Features of Options │ ├── 01 Introduction.html │ ├── 02 Definition.html │ ├── 03 Options Contract.html │ ├── 04 The Value of Options.html │ ├── 05 Options Moneyness.html │ ├── 06 Exercise and Assignment.html │ └── 07 Summary.html ├── 02 QuantConnect Options API │ ├── 01 Introduction.html │ ├── 02 Add Options.html │ ├── 03 Filter Contracts.html │ ├── 04 Select Contracts.html │ ├── 05 Algorithm.html │ └── 06 Summary.html ├── 03 Put-Call Parity and Arbitrage Strategies │ ├── 01 Introduction.html │ ├── 02 Option Payoff.html │ ├── 02 Put-Call Parity and Arbitrage Strategies.ipynb │ ├── 03 Put-Call Parity.html │ ├── 04 Synthetic Positions.html │ ├── 05 Algorithm.html │ ├── 06 Summary.html │ └── 07 References.html ├── 04 Stochastic Processes and Monte Carlo Method │ ├── 01 Introduction.html │ ├── 02 Brownian motion.html │ ├── 03 Modeling Stock Price as a Stochastic Process.html │ ├── 04 Monte Carlo Simulation of Stock Price.html │ ├── 04 Stochastic Processes and Monte Carlo Method.ipynb │ ├── 05 Monte Carlo Simulation of European Options.html │ ├── 06 Summary.html │ └── 07 References.html ├── 05 Options Pricing Black Scholes Merton Model │ ├── 01 Introduction.html │ ├── 02 Determinants of Option Price.html │ ├── 03 Factors in BSM model.html │ ├── 04 Model Assumptions.html │ ├── 05 Model Equations.html │ ├── 05 Option Pricing Black Scholes Merton Model.ipynb │ └── 06 Summary.html ├── 06 The Greek Letters │ ├── 01 Introduction.html │ ├── 02 Delta.html │ ├── 03 gamma.html │ ├── 04 vega.html │ ├── 05 Theta.html │ ├── 06 Rho.html │ ├── 06 The Greek Letters.ipynb │ ├── 07 Delta, Gamma and Vega Hedging.html │ └── 08 Summary.html ├── 07 Historical Volatility and Implied Volatility │ ├── 01 Introduction.html │ ├── 02 Historical Volatility.html │ ├── 03 Implied Volatility.html │ ├── 04 Volatility Skew.html │ ├── 05 Volatility Surface.html │ ├── 06 The Reason for Volatility Skew.html │ ├── 07 Historical Volatility and Implied Volatility.ipynb │ ├── 07 Summary.html │ └── 08 References.html └── 08 Local Volatility and Stochastic Volatility │ ├── 01 Introduction.html │ ├── 02 Motivation.html │ ├── 03 Local Volatility.html │ ├── 04 Stochastic Volatility.html │ ├── 05 Summary.html │ ├── 06 References.html │ └── 08 Local Volatility and Stochastic Volatility.ipynb ├── 07 Applied Options[] ├── 01 Covered Call │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 02 Bull Call Spread │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 03 Long Straddle │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 04 Long Strangle │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 05 Butterfly Spread │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 06 Iron Condor │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 07 Iron Butterfly │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html └── 08 Protective Collar │ ├── 01 Definition.html │ ├── 02 Implementation.html │ ├── 03 Summary.html │ └── 04 Algorithm.html ├── 08 Meta └── 01 Creating BootCamp Tutorials │ ├── 00.html │ ├── 01 Introduction.html │ ├── 02 Requirements.html │ ├── 03 Compensation.html │ ├── 04 Content Structure.html │ ├── 05 Planning Your Lesson.html │ ├── 06 Writing a Lesson.html │ ├── 07 Building Code Validators.html │ ├── 08 Style Guide.html │ ├── 09 Submitting Lesson for Review.html │ └── 10 Summary.html ├── Data ├── F-F_Research_Data_5_Factors_2x3.CSV ├── F-F_Research_Data_5_Factors_2x3_daily.CSV ├── F-F_Research_Data_Factors.CSV ├── F-F_Research_Data_Factors_daily.CSV └── F-F_Research_Data_Factors_weekly.CSV ├── LICENSE ├── README.md └── quantpedia.json /.gitignore: -------------------------------------------------------------------------------- 1 | */.ipynb_checkpoints/* 2 | .idea/ 3 | -------------------------------------------------------------------------------- /00 Home/01 Home/01 Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/00 Home/01 Home/01 Home.html -------------------------------------------------------------------------------- /01 API Tutorials/00 Introduction/00 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/00 Introduction/00 Introduction.html -------------------------------------------------------------------------------- /01 API Tutorials/01 Consolidating Data to Build Bars/01 Consolidating Data to Build Bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/01 Consolidating Data to Build Bars/01 Consolidating Data to Build Bars.html -------------------------------------------------------------------------------- /01 API Tutorials/02 Scheduled Events/02 Scheduled Events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/02 Scheduled Events/02 Scheduled Events.html -------------------------------------------------------------------------------- /01 API Tutorials/03 Tracking and Managing Orders/01 Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/03 Tracking and Managing Orders/01 Overview.html -------------------------------------------------------------------------------- /01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/03 Tracking and Managing Orders/02 Updating Orders.html -------------------------------------------------------------------------------- /01 API Tutorials/03 Tracking and Managing Orders/03 Full Python Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/03 Tracking and Managing Orders/03 Full Python Example.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/01 Introduction.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/02 Add Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/02 Add Options.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/03 Filter Contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/03 Filter Contracts.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/04 Select Contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/04 Select Contracts.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/05 Algorithm.html -------------------------------------------------------------------------------- /01 API Tutorials/04 Using Options in QuantConnect/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/01 API Tutorials/04 Using Options in QuantConnect/06 Summary.html -------------------------------------------------------------------------------- /02 Tutorial Series/00 Introduction/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/00 Introduction/Introduction.html -------------------------------------------------------------------------------- /02 Tutorial Series/01 Introduction to Financial Python/00 About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/01 Introduction to Financial Python/00 About.html -------------------------------------------------------------------------------- /02 Tutorial Series/01 Introduction to Financial Python/01 What Will I learn %3F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/01 Introduction to Financial Python/01 What Will I learn %3F.html -------------------------------------------------------------------------------- /02 Tutorial Series/01 Introduction to Financial Python/02 Tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/01 Introduction to Financial Python/02 Tutorials.html -------------------------------------------------------------------------------- /02 Tutorial Series/02 Introduction to Options/00 About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/02 Introduction to Options/00 About.html -------------------------------------------------------------------------------- /02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/02 Introduction to Options/01 What Will I learn %3F.html -------------------------------------------------------------------------------- /02 Tutorial Series/02 Introduction to Options/02 Tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/02 Introduction to Options/02 Tutorials.html -------------------------------------------------------------------------------- /02 Tutorial Series/03 Applied Options/00 About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/03 Applied Options/00 About.html -------------------------------------------------------------------------------- /02 Tutorial Series/03 Applied Options/01 What Will I learn %3F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/03 Applied Options/01 What Will I learn %3F.html -------------------------------------------------------------------------------- /02 Tutorial Series/03 Applied Options/02 Tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/02 Tutorial Series/03 Applied Options/02 Tutorials.html -------------------------------------------------------------------------------- /03 Open Source/00 Introduction/Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/00 Introduction/Introduction.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/00.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/01 Introduction.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/02 Installing LEAN with Python.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/03 Method 1 - PTVSD.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/04 Method 2 - PDB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/04 Method 2 - PDB.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/05 Method 3 - VisualStudio Debugger.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/06 Limitations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/06 Limitations.html -------------------------------------------------------------------------------- /03 Open Source/01 Debugging Python/07 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/01 Debugging Python/07 Summary.html -------------------------------------------------------------------------------- /03 Open Source/03 Using the API File Provider/02 How do I use the API File Provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/03 Using the API File Provider/02 How do I use the API File Provider.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/00.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/01 Introduction.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/02 Creating a Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/02 Creating a Report.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/03 Source Backtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/03 Source Backtest.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/04 Customizing Report Contents.html -------------------------------------------------------------------------------- /03 Open Source/04 Lean Report Creator/05 Interpreting Report Charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/04 Lean Report Creator/05 Interpreting Report Charts.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/05 Brokerage Development Guide/00.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/05 Brokerage Development Guide/01 Introduction.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/02 Guide Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/05 Brokerage Development Guide/02 Guide Contents.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/03 Step 1%3A Laying a Foundation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/05 Brokerage Development Guide/03 Step 1%3A Laying a Foundation.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/04 Step 2%3A Creating the Brokerage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/05 Brokerage Development Guide/04 Step 2%3A Creating the Brokerage.html -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/05 Step 3%3A Translating Symbol Conventions.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/06 Step 4%3A Describe Brokerage Limitations.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/07 Step 5%3A Enable Live Data Streaming.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/08 Step 6%3A Enable Serving Historical Data.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/09 Step 7%3A Downloading Data.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/10 Step 8%3A Brokerage Fee Structures.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/05 Brokerage Development Guide/11 Step 9%3A Updating Algorithm API.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/00.html -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/01 Introduction.html -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/02 Using the Random Data Generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/02 Using the Random Data Generator.html -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/03 Command Parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/03 Command Parameters.html -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/04 Supported Assets and Resolutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/04 Supported Assets and Resolutions.html -------------------------------------------------------------------------------- /03 Open Source/06 Generating Random Backtest Data/05 Final Notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/03 Open Source/06 Generating Random Backtest Data/05 Final Notes.html -------------------------------------------------------------------------------- /04 Strategy Library/00 Strategy Library/01 Strategy Library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/00 Strategy Library/01 Strategy Library.php -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 CAPM Theory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 CAPM Theory.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 资本资产定价模型(CAPM)理论.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/02 资本资产定价模型(CAPM)理论.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/03 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 总结.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/04 总结.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/05 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 参考文献.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/01 CAPM Alpha Ranking Strategy on Dow 30 Companies/06 参考文献.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/04 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/04 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/05 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/06 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/02 Combining Mean Reversion and Momentum in Forex Market/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 摘要.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/01 摘要.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 Framework of Copula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 Framework of Copula.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 联系框架.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/02 联系框架.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 Part I - Copula Method.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 第I部分 – 联系法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/03 第I部分 – 联系法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 Part II - Cointegration Method.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 第II部分 – 协整法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/04 第II部分 – 协整法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 总结.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/05 总结.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/06 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 参考文献.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/03 Pairs Trading-Copula vs Cointegration/07 参考文献.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/04 The Dynamic Breakout II Strategy/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/04 The Dynamic Breakout II Strategy/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/04 The Dynamic Breakout II Strategy/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/04 The Dynamic Breakout II Strategy/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/04 The Dynamic Breakout II Strategy/03 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/04 The Dynamic Breakout II Strategy/03 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/04 The Dynamic Breakout II Strategy/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/04 The Dynamic Breakout II Strategy/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/04 The Dynamic Breakout II Strategy/05 References.html -------------------------------------------------------------------------------- /04 Strategy Library/05 Dual Thrust Trading Algorithm/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/05 Dual Thrust Trading Algorithm/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/05 Dual Thrust Trading Algorithm/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/05 Dual Thrust Trading Algorithm/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/05 Dual Thrust Trading Algorithm/03 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/05 Dual Thrust Trading Algorithm/03 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/05 Dual Thrust Trading Algorithm/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/05 Dual Thrust Trading Algorithm/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/05 Dual Thrust Trading Algorithm/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/05 Dual Thrust Trading Algorithm/05 References.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/02 Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/02 Background.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/04 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/05 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/06 Can Crude Oil Predict Equity Returns/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/06 Can Crude Oil Predict Equity Returns/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 摘要.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/01 摘要.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 Factor Selection.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 要素选择.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/02 要素选择.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 Stock Selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 Stock Selection.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 股票选择.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/03 股票选择.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/04 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 References.html -------------------------------------------------------------------------------- /04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 参考文献.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/09 Stock Selection Strategy Based on Fundamental Factors/05 参考文献.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/05 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/07 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/08 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/10 Short-Term Reversal Strategy in Stocks/09 References.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/03 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/03 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/100 Trading with WTI BRENT Spread/04 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/100 Trading with WTI BRENT Spread/04 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/102 Option Expiration Week Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/102 Option Expiration Week Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/102 Option Expiration Week Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/102 Option Expiration Week Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/102 Option Expiration Week Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/102 Option Expiration Week Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/102 Option Expiration Week Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/02 Background.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/05 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/06 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/07 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1023 Intraday Arbitrage Between Index ETFs/08 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/05 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1024 Forecasting Stock Prices using a Temporal CNN Model/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/05 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1025 Leveraged ETFs with Systematic Risk Management/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/02 Background.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/05 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/1026 Intraday ETF Momentum/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1026 Intraday ETF Momentum/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/05 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/06 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/07 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1028 Ichimoku Clouds in the Energy Sector/08 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/05 Video Walkthrough.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/06 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/1029 Optimal Pairs Trading/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1029 Optimal Pairs Trading/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/05 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/05 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/1030 G-Score Investing/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1030 G-Score Investing/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/05 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1031 SVM Wavelet Forecasting/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/02 Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/02 Background.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/05 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/06 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/07 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/1033 Gradient Boosting Model/08 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1033 Gradient Boosting Model/08 References.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/02 Background.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/03 Video Walkthrough.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/04 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/05 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/06 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/07 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/08 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/1036 Gaussian Naive Bayes Model/09 References.html -------------------------------------------------------------------------------- /04 Strategy Library/11 Fundamental Factor Long Short Strategy/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/11 Fundamental Factor Long Short Strategy/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/11 Fundamental Factor Long Short Strategy/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/11 Fundamental Factor Long Short Strategy/02 Implementation.html -------------------------------------------------------------------------------- /04 Strategy Library/11 Fundamental Factor Long Short Strategy/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/11 Fundamental Factor Long Short Strategy/03 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/11 Fundamental Factor Long Short Strategy/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/11 Fundamental Factor Long Short Strategy/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/11 Fundamental Factor Long Short Strategy/05 References.html -------------------------------------------------------------------------------- /04 Strategy Library/113 January Barometer/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/113 January Barometer/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/113 January Barometer/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/113 January Barometer/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/113 January Barometer/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/113 January Barometer/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/113 January Barometer/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/113 January Barometer/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/114 January Effect in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/114 January Effect in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/114 January Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/114 January Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/114 January Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/114 January Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/114 January Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/118 Time Series Momentum Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/118 Time Series Momentum Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/118 Time Series Momentum Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/118 Time Series Momentum Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/118 Time Series Momentum Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/118 Time Series Momentum Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/118 Time Series Momentum Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/118 Time Series Momentum Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/12 Asset Class Trend Following/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/12 Asset Class Trend Following/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/12 Asset Class Trend Following/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/12 Asset Class Trend Following/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/12 Asset Class Trend Following/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/12 Asset Class Trend Following/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/12 Asset Class Trend Following/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/125 12 Month Cycle in Cross-Section of Stocks Returns/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/13 Asset Class Momentum/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/13 Asset Class Momentum/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/13 Asset Class Momentum/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/13 Asset Class Momentum/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/13 Asset Class Momentum/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/13 Asset Class Momentum/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/13 Asset Class Momentum/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/136 Residual Momentum/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/136 Residual Momentum/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/136 Residual Momentum/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/136 Residual Momentum/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/136 Residual Momentum/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/136 Residual Momentum/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/136 Residual Momentum/04 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/136 Residual Momentum/04 References.html -------------------------------------------------------------------------------- /04 Strategy Library/14 Sector Momentum/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/14 Sector Momentum/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/14 Sector Momentum/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/14 Sector Momentum/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/14 Sector Momentum/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/14 Sector Momentum/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/14 Sector Momentum/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/14 Sector Momentum/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/15 Short Term Reversal/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/15 Short Term Reversal/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/15 Short Term Reversal/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/15 Short Term Reversal/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/15 Short Term Reversal/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/15 Short Term Reversal/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/15 Short Term Reversal/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/15 Short Term Reversal/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/152 Momentum Effect in REITs/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/152 Momentum Effect in REITs/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/152 Momentum Effect in REITs/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/152 Momentum Effect in REITs/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/152 Momentum Effect in REITs/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/152 Momentum Effect in REITs/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/152 Momentum Effect in REITs/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/152 Momentum Effect in REITs/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/155 Momentum and Reversal Combined with Volatility Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/16 Overnight Anomaly/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/16 Overnight Anomaly/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/16 Overnight Anomaly/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/16 Overnight Anomaly/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/16 Overnight Anomaly/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/16 Overnight Anomaly/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/16 Overnight Anomaly/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/03 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/162 Momentum Effect in Stocks in Small Portfolios/04 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/17 Forex Momentum/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/17 Forex Momentum/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/17 Forex Momentum/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/17 Forex Momentum/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/17 Forex Momentum/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/17 Forex Momentum/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/17 Forex Momentum/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/17 Forex Momentum/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/18 Volatility Effect in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/18 Volatility Effect in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/18 Volatility Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/18 Volatility Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/18 Volatility Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/18 Volatility Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/18 Volatility Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/19 Pairs Trading with Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/19 Pairs Trading with Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/19 Pairs Trading with Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/19 Pairs Trading with Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/19 Pairs Trading with Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/19 Pairs Trading with Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/19 Pairs Trading with Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/198 Exploiting Term Structure of VIX Futures/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/198 Exploiting Term Structure of VIX Futures/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/198 Exploiting Term Structure of VIX Futures/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/198 Exploiting Term Structure of VIX Futures/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/198 Exploiting Term Structure of VIX Futures/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/199 ROA Effect within Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/199 ROA Effect within Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/199 ROA Effect within Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/199 ROA Effect within Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/199 ROA Effect within Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/199 ROA Effect within Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/199 ROA Effect within Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/03 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/03 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/20 Forex Carry Trade/04 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/20 Forex Carry Trade/04 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/207 Value Effect within Countries/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/207 Value Effect within Countries/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/207 Value Effect within Countries/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/207 Value Effect within Countries/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/207 Value Effect within Countries/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/207 Value Effect within Countries/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/207 Value Effect within Countries/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/21 Momentum Effect in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/21 Momentum Effect in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/21 Momentum Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/21 Momentum Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/21 Momentum Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/21 Momentum Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/21 Momentum Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/21 Momentum Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/03 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/05 Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/211 Mean-Reversion Statistical Arbitrage Strategy in Stocks/05 Reference.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/01 简介.cn.html: -------------------------------------------------------------------------------- 1 |
2 | 此算法检验了国家指数交易所交易基金的动量效应。 3 |
4 | -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 结论.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/03 结论.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/04 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/22 Momentum Effect in Country Equity Indexes/05 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/229 Earnings Quality Factor/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/229 Earnings Quality Factor/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/229 Earnings Quality Factor/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/229 Earnings Quality Factor/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/229 Earnings Quality Factor/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/229 Earnings Quality Factor/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/229 Earnings Quality Factor/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/23 Mean Reversion Effect in Country Equity Indexes/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/24 Liquidity Effect in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/24 Liquidity Effect in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/24 Liquidity Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/24 Liquidity Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/24 Liquidity Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/24 Liquidity Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/24 Liquidity Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/25 Volatility Risk Premium Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/25 Volatility Risk Premium Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/25 Volatility Risk Premium Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/25 Volatility Risk Premium Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/25 Volatility Risk Premium Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/25 Volatility Risk Premium Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/25 Volatility Risk Premium Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/26 Quantpedia/02 Quantpedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/26 Quantpedia/02 Quantpedia.php -------------------------------------------------------------------------------- /04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/03 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/269 Seasonality Effect based on Same-Calendar Month Returns/05 Reference.html -------------------------------------------------------------------------------- /04 Strategy Library/27 Momentum Effect in Commodities Futures/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/27 Momentum Effect in Commodities Futures/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/27 Momentum Effect in Commodities Futures/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/27 Momentum Effect in Commodities Futures/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/27 Momentum Effect in Commodities Futures/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/27 Momentum Effect in Commodities Futures/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/27 Momentum Effect in Commodities Futures/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/270 Risk Premia in Forex Markets/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/270 Risk Premia in Forex Markets/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/270 Risk Premia in Forex Markets/03 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/270 Risk Premia in Forex Markets/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/270 Risk Premia in Forex Markets/05 Reference.html -------------------------------------------------------------------------------- /04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/271 Price and Earning Momentum/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/271 Price and Earning Momentum/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/271 Price and Earning Momentum/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/271 Price and Earning Momentum/03 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/271 Price and Earning Momentum/03 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/271 Price and Earning Momentum/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/271 Price and Earning Momentum/05 Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/271 Price and Earning Momentum/05 Reference.html -------------------------------------------------------------------------------- /04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/28 Small Capitalization Stocks Premium Anomaly/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/29 Term Structure Effect in Commodities/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/29 Term Structure Effect in Commodities/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/29 Term Structure Effect in Commodities/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/29 Term Structure Effect in Commodities/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/29 Term Structure Effect in Commodities/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/29 Term Structure Effect in Commodities/04 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/29 Term Structure Effect in Commodities/04 References.html -------------------------------------------------------------------------------- /04 Strategy Library/29 Term Structure Effect in Commodities/05 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/29 Term Structure Effect in Commodities/05 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/30 Momentum Effect Combined with Term Structure in Commodities/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/31 Book-to-Market Value Anomaly/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/31 Book-to-Market Value Anomaly/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/31 Book-to-Market Value Anomaly/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/31 Book-to-Market Value Anomaly/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/31 Book-to-Market Value Anomaly/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/31 Book-to-Market Value Anomaly/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/31 Book-to-Market Value Anomaly/04 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/31 Book-to-Market Value Anomaly/05 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/31 Book-to-Market Value Anomaly/05 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/32 Gold Market Timing/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/32 Gold Market Timing/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/32 Gold Market Timing/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/32 Gold Market Timing/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/32 Gold Market Timing/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/32 Gold Market Timing/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/32 Gold Market Timing/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/32 Gold Market Timing/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/33 Paired Switching/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/33 Paired Switching/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/33 Paired Switching/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/33 Paired Switching/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/33 Paired Switching/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/33 Paired Switching/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/33 Paired Switching/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/33 Paired Switching/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/34 Momentum-Short Term Reversal Strategy/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/34 Momentum-Short Term Reversal Strategy/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/34 Momentum-Short Term Reversal Strategy/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/34 Momentum-Short Term Reversal Strategy/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/35 Turn of the Month in Equity Indexes/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/35 Turn of the Month in Equity Indexes/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/35 Turn of the Month in Equity Indexes/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/35 Turn of the Month in Equity Indexes/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/35 Turn of the Month in Equity Indexes/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/35 Turn of the Month in Equity Indexes/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/35 Turn of the Month in Equity Indexes/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/35 Turn of the Month in Equity Indexes/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/353 Fama French Five Factors/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/353 Fama French Five Factors/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/353 Fama French Five Factors/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/353 Fama French Five Factors/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/353 Fama French Five Factors/03 Results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/353 Fama French Five Factors/03 Results.html -------------------------------------------------------------------------------- /04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/353 Fama French Five Factors/04 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/353 Fama French Five Factors/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/353 Fama French Five Factors/05 References.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/02 Theory.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/03 Data Description.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/04 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/05 Conclusion and Future Work.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/06 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/354 Expected Idiosyncratic Skewness/F-F_Research_Data_Factors_daily.CSV -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/02 Theory.html -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/04 Conclusion and Future Work.html -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/05 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/355 Standardized Unexpected Earnings/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/03 TSMOM-CF Theory.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/04 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/05 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/06 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/356 Improved Momentum Strategy on Commodities Futures/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/01 Abstract.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/02 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/03 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/04 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/05 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/357 Commodities Futures Trend Following/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/357 Commodities Futures Trend Following/06 References.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/03 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/36 Sentiment and Style Rotation Effect in Stocks/04 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/37 Momentum and State of Market Filters/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/37 Momentum and State of Market Filters/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/37 Momentum and State of Market Filters/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/37 Momentum and State of Market Filters/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/37 Momentum and State of Market Filters/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/37 Momentum and State of Market Filters/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/37 Momentum and State of Market Filters/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/38 Accrual Anomaly/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/38 Accrual Anomaly/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/38 Accrual Anomaly/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/38 Accrual Anomaly/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/38 Accrual Anomaly/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/38 Accrual Anomaly/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/38 Accrual Anomaly/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/38 Accrual Anomaly/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/01 简介.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/01 简介.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/02 方法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/02 方法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/03 算法.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/03 算法.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/39 Asset Growth Effect/04 来源.cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/39 Asset Growth Effect/04 来源.cn.html -------------------------------------------------------------------------------- /04 Strategy Library/40 Pairs Trading with Country ETFs/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/40 Pairs Trading with Country ETFs/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/40 Pairs Trading with Country ETFs/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/40 Pairs Trading with Country ETFs/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/40 Pairs Trading with Country ETFs/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/40 Pairs Trading with Country ETFs/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/40 Pairs Trading with Country ETFs/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/58 VIX Predicts Stock Index Returns/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/58 VIX Predicts Stock Index Returns/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/58 VIX Predicts Stock Index Returns/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/58 VIX Predicts Stock Index Returns/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/58 VIX Predicts Stock Index Returns/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/58 VIX Predicts Stock Index Returns/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/58 VIX Predicts Stock Index Returns/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/61 Lunar Cycle in Equity Market/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/61 Lunar Cycle in Equity Market/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/61 Lunar Cycle in Equity Market/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/61 Lunar Cycle in Equity Market/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/61 Lunar Cycle in Equity Market/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/61 Lunar Cycle in Equity Market/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/61 Lunar Cycle in Equity Market/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/66 Combining Momentum Effect with Volume/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/66 Combining Momentum Effect with Volume/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/66 Combining Momentum Effect with Volume/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/66 Combining Momentum Effect with Volume/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/66 Combining Momentum Effect with Volume/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/66 Combining Momentum Effect with Volume/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/66 Combining Momentum Effect with Volume/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/71 Short Term Reversal with Futures/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/71 Short Term Reversal with Futures/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/71 Short Term Reversal with Futures/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/71 Short Term Reversal with Futures/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/71 Short Term Reversal with Futures/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/71 Short Term Reversal with Futures/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/71 Short Term Reversal with Futures/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/77 Beta Factors in Stocks/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/77 Beta Factors in Stocks/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/77 Beta Factors in Stocks/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/77 Beta Factors in Stocks/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/77 Beta Factors in Stocks/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/77 Beta Factors in Stocks/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/77 Beta Factors in Stocks/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/78 Beta Factor in Country Equity Indexes/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/78 Beta Factor in Country Equity Indexes/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/78 Beta Factor in Country Equity Indexes/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/78 Beta Factor in Country Equity Indexes/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/78 Beta Factor in Country Equity Indexes/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/78 Beta Factor in Country Equity Indexes/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/78 Beta Factor in Country Equity Indexes/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/83 Pre-Holiday Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/83 Pre-Holiday Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/83 Pre-Holiday Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/83 Pre-Holiday Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/83 Pre-Holiday Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/83 Pre-Holiday Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/83 Pre-Holiday Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/04 Relative Performance.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/05 Market & Competition Qualification.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/06 Conclusion.html -------------------------------------------------------------------------------- /04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/85 Momentum in Mutual Fund Returns/07 References.html -------------------------------------------------------------------------------- /04 Strategy Library/91 Momentum and Style Rotation Effect/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/91 Momentum and Style Rotation Effect/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/91 Momentum and Style Rotation Effect/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/91 Momentum and Style Rotation Effect/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/91 Momentum and Style Rotation Effect/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/91 Momentum and Style Rotation Effect/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/91 Momentum and Style Rotation Effect/04 Source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/91 Momentum and Style Rotation Effect/04 Source.html -------------------------------------------------------------------------------- /04 Strategy Library/92 Price Earnings Anomaly/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/92 Price Earnings Anomaly/01 Introduction.html -------------------------------------------------------------------------------- /04 Strategy Library/92 Price Earnings Anomaly/02 Method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/92 Price Earnings Anomaly/02 Method.html -------------------------------------------------------------------------------- /04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/92 Price Earnings Anomaly/03 Algorithm.html -------------------------------------------------------------------------------- /04 Strategy Library/92 Price Earnings Anomaly/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/92 Price Earnings Anomaly/04 Summary.html -------------------------------------------------------------------------------- /04 Strategy Library/92 Price Earnings Anomaly/05 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/04 Strategy Library/92 Price Earnings Anomaly/05 References.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/01 Data Types and Data Structures/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/01 Data Types and Data Structures/02 Basic Variable Types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/01 Data Types and Data Structures/02 Basic Variable Types.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/01 Data Types and Data Structures/03 Basic Math Operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/01 Data Types and Data Structures/03 Basic Math Operations.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/01 Data Types and Data Structures/04 Data Collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/01 Data Types and Data Structures/04 Data Collections.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/01 Data Types and Data Structures/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/01 Data Types and Data Structures/06 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/02 Logical Operations.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/03 If Statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/03 If Statement.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/04 Loop Structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/04 Loop Structure.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/05 List Comprehension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/05 List Comprehension.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/02 Logical Operations and Loops/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/02 Logical Operations and Loops/06 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/03 Functions and Objective-Oriented Programming/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/02 NumPy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/02 NumPy.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/03 Pandas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/03 Pandas.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 NumPy and Basic Pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 NumPy and Basic Pandas.ipynb -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/04 NumPy and Basic Pandas/04 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/02 Fetching Data.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/03 Resampling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/03 Resampling.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/04 DataFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/04 DataFrame.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/05 Pandas-Resampling and DataFrame/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/02 Rate of Return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/02 Rate of Return.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/03 Mean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/03 Mean.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/06 Rate of Return, Mean and Variance/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/07 Random Variables and Distributions/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/07 Random Variables and Distributions/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/07 Random Variables and Distributions/02 Random Variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/07 Random Variables and Distributions/02 Random Variables.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/07 Random Variables and Distributions/03 Distributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/07 Random Variables and Distributions/03 Distributions.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/07 Random Variables and Distributions/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/07 Random Variables and Distributions/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/04 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/08 Confidence Interval and Hypothesis Testing/04 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/02 Slope and Intercept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/02 Slope and Intercept.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/03 Python Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/03 Python Implementation.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/04 Parameter Significance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/04 Parameter Significance.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/05 Model Significance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/05 Model Significance.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/06 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/09 Simple Linear Regression/09 Simple Linear Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/09 Simple Linear Regression/09 Simple Linear Regression.ipynb -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/02 Python Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/02 Python Implementation.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/03 Model Significance Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/03 Model Significance Test.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/04 Residual Analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/04 Residual Analysis.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/10 Multiple Linear Regression/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/10 Multiple Linear Regression/06 References.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/02 Vectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/02 Vectors.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/03 Matrices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/03 Matrices.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/04 Matrix Multiplication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/04 Matrix Multiplication.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/05 Inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/05 Inverse.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/06 Linear Equations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/06 Linear Equations.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/07 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/07 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/11 Linear Algebra/11 Linear Algebra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/11 Linear Algebra/11 Linear Algebra.ipynb -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/02 Risk Aversion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/02 Risk Aversion.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/04 Mean-Variance Analysis.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/06 Algorithm.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/12 Modern Portfolio Theory/12 Modern Portfolio Theory.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/12 Modern Portfolio Theory/12 Modern Portfolio Theory.ipynb -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/02 Capital Asset Pricing Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/02 Capital Asset Pricing Model.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/03 Computing beta in Practice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/03 Computing beta in Practice.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/04 Market-Neutral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/04 Market-Neutral.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/06 Algorithm.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/13 Market Risk/13 Market Risk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/13 Market Risk/13 Market Risk.ipynb -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/01 Introduction.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/03 Model Test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/03 Model Test.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/04 Factor Returns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/04 Factor Returns.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/05 Summary.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/06 Algorithm.html -------------------------------------------------------------------------------- /05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/05 Introduction to Financial Python[]/14 Fama-French Multi-Factor Models/07 References.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/02 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/02 Definition.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/03 Options Contract.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/03 Options Contract.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/04 The Value of Options.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/05 Options Moneyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/05 Options Moneyness.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/06 Exercise and Assignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/06 Exercise and Assignment.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/01 General Features of Options/07 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/01 General Features of Options/07 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/02 Add Options.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/03 Filter Contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/03 Filter Contracts.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/04 Select Contracts.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/05 Algorithm.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/02 QuantConnect Options API/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/02 QuantConnect Options API/06 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Option Payoff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/02 Option Payoff.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/03 Put-Call Parity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/03 Put-Call Parity.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/04 Synthetic Positions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/04 Synthetic Positions.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/05 Algorithm.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/06 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/03 Put-Call Parity and Arbitrage Strategies/07 References.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/02 Brownian motion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/02 Brownian motion.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/06 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/07 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/04 Stochastic Processes and Monte Carlo Method/07 References.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/04 Model Assumptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/04 Model Assumptions.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Model Equations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/05 Model Equations.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/06 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/05 Options Pricing Black Scholes Merton Model/06 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/02 Delta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/02 Delta.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/03 gamma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/03 gamma.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/04 vega.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/04 vega.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/05 Theta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/05 Theta.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/06 Rho.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/06 Rho.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/06 The Greek Letters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/06 The Greek Letters.ipynb -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/07 Delta, Gamma and Vega Hedging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/07 Delta, Gamma and Vega Hedging.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/06 The Greek Letters/08 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/06 The Greek Letters/08 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/04 Volatility Skew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/04 Volatility Skew.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/07 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/08 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/07 Historical Volatility and Implied Volatility/08 References.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/01 Introduction.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/02 Motivation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/02 Motivation.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/03 Local Volatility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/03 Local Volatility.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/05 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/05 Summary.html -------------------------------------------------------------------------------- /06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/06 References.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/06 Introduction to Options[]/08 Local Volatility and Stochastic Volatility/06 References.html -------------------------------------------------------------------------------- /07 Applied Options[]/01 Covered Call/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/01 Covered Call/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/01 Covered Call/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/01 Covered Call/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/01 Covered Call/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/01 Covered Call/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/01 Covered Call/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/01 Covered Call/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/02 Bull Call Spread/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/02 Bull Call Spread/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/02 Bull Call Spread/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/02 Bull Call Spread/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/02 Bull Call Spread/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/02 Bull Call Spread/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/02 Bull Call Spread/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/03 Long Straddle/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/03 Long Straddle/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/03 Long Straddle/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/03 Long Straddle/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/03 Long Straddle/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/03 Long Straddle/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/03 Long Straddle/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/03 Long Straddle/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/04 Long Strangle/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/04 Long Strangle/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/04 Long Strangle/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/04 Long Strangle/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/04 Long Strangle/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/04 Long Strangle/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/04 Long Strangle/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/04 Long Strangle/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/05 Butterfly Spread/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/05 Butterfly Spread/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/05 Butterfly Spread/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/05 Butterfly Spread/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/05 Butterfly Spread/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/05 Butterfly Spread/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/05 Butterfly Spread/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/06 Iron Condor/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/06 Iron Condor/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/06 Iron Condor/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/06 Iron Condor/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/06 Iron Condor/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/06 Iron Condor/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/06 Iron Condor/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/06 Iron Condor/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/07 Iron Butterfly/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/07 Iron Butterfly/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/07 Iron Butterfly/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/07 Iron Butterfly/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/07 Iron Butterfly/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/07 Iron Butterfly/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/07 Iron Butterfly/04 Algorithm.html -------------------------------------------------------------------------------- /07 Applied Options[]/08 Protective Collar/01 Definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/08 Protective Collar/01 Definition.html -------------------------------------------------------------------------------- /07 Applied Options[]/08 Protective Collar/02 Implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/08 Protective Collar/02 Implementation.html -------------------------------------------------------------------------------- /07 Applied Options[]/08 Protective Collar/03 Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/08 Protective Collar/03 Summary.html -------------------------------------------------------------------------------- /07 Applied Options[]/08 Protective Collar/04 Algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/07 Applied Options[]/08 Protective Collar/04 Algorithm.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/00.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/01 Introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/01 Introduction.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/02 Requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/02 Requirements.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/03 Compensation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/03 Compensation.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/04 Content Structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/04 Content Structure.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/05 Planning Your Lesson.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/06 Writing a Lesson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/06 Writing a Lesson.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/07 Building Code Validators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/07 Building Code Validators.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/08 Style Guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/08 Meta/01 Creating BootCamp Tutorials/08 Style Guide.html -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/09 Submitting Lesson for Review.html: -------------------------------------------------------------------------------- 1 |2 | Lesson submission 3 |
4 | -------------------------------------------------------------------------------- /08 Meta/01 Creating BootCamp Tutorials/10 Summary.html: -------------------------------------------------------------------------------- 1 |2 | 3 |
4 | -------------------------------------------------------------------------------- /Data/F-F_Research_Data_5_Factors_2x3.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/Data/F-F_Research_Data_5_Factors_2x3.CSV -------------------------------------------------------------------------------- /Data/F-F_Research_Data_5_Factors_2x3_daily.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/Data/F-F_Research_Data_5_Factors_2x3_daily.CSV -------------------------------------------------------------------------------- /Data/F-F_Research_Data_Factors.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/Data/F-F_Research_Data_Factors.CSV -------------------------------------------------------------------------------- /Data/F-F_Research_Data_Factors_daily.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/Data/F-F_Research_Data_Factors_daily.CSV -------------------------------------------------------------------------------- /Data/F-F_Research_Data_Factors_weekly.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/Data/F-F_Research_Data_Factors_weekly.CSV -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /quantpedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantConnect/Tutorials/HEAD/quantpedia.json --------------------------------------------------------------------------------