What is Boot Camp?
Boot Camp is a great way to improve your skills and learn the QuantConnect API in easily digestible portions.
Don't have an account? Join QuantConnect Today
We are dedicated to providing investors with a cutting-edge platform for rapidly creating quant investment strategies. Founded in 2012, we've empowered more than 250,000 quants and engineers to create and trade their ideas.
Quickly and easily started with our API to build your strategy. The learning center lessons are interactive, step-by-step guides to make you productive as fast as possible.
Focus your efforts on driving alpha, not parsing CSV files. Our cloud offers hundreds of terabytes of traditional and alternative data preformatted, cleaned, and instantly accessible by our API.
Coordinate teamwork, control access permissions, and your shared cloud resources. Grow your trading organization safely and efficiently on top of our cloud architecture.
A selection of streaming live-trading strategies written by QuantConnect, and top highlights from the community available to follow and clone. Peer into detailed real-time positions to gain insight for your own trading.
What is Boot Camp?
Boot Camp is a great way to improve your skills and learn the QuantConnect API in easily digestible portions.
A collection of courses from independent educators to improve your quant skill base and create better strategies.
Solidify and expand your quant skill base with courses at QuantConnect
Learn algorithmic trading with python for US Equities. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 96,026 People Enrolled
Learn algorithmic trading with python for FX. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 20,594 People Enrolled
Learn algorithmic trading with python for Futures. Guided strategy development in easily digestible portions.
Author: QuantConnect
Free | 7,425 People Enrolled
In this algorithmic trading tutorial series you will learn everything you need to know to start writing your own trading bots using Python and the QuantConnect quantitative trading platform.
Author: Louis
Free | 28,807 People Enrolled
Master algorithmic trading on QuantConnect; backtest and live trade Stocks, Options, Futures, Forex, and Crypto.
Author: Cheng Li
Paid | Enroll on Udemy
Learn to use Python, Pandas, Matplotlib, and the QuantConnect Lean Engine to perform financial analysis and trading.
Author: Jose Portilla, Pierian Training
Paid | Enroll on Udemy
Learn to write programs that algorithmically trade cryptocurrencies using QuantConnect (C#).
Author: Eric Summers
Paid | Enroll on Udemy
Organization Notes
Get Started with Algorithm Lab
New Research
Optimizing a Gold-SPY Portfolio Using Hidden Markov Models for Market Downtime
Gold-SPY portfolio optimization using Hidden Markov Models for minimizing market downturn risk....
ReadAlgorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
This account is protected by two-factor authentication.
Request Token Information Reset My TokenCreated | Last Time Used | Agent | |
---|---|---|---|
No entries found |
To continue please enter your email:
(No google account required)
To verify that everything goes well please enter the 6 digit verification code generated by the authenticator application
Algorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
Please stop one of the following coding sessions, or upgrade your account.
NAME | ORGANIZATION |
---|
QuantConnect Datasets
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Datasets >
Dashboard
A transparent, community reporting system. Report suspected issues with our cloud data to be investigated by the QuantConnect Team.
Issue List
Loading...
Data Explorer Issues are a way to report and track data problems. They give the QuantConnect community a way to discuss potential solutions and be notified when they are resolved. If you think you have found a data problem please check the existing open and closed issues first; often another user may have already reported your problem.
Does your issue match any of the already listed issues?
Thank you for your contribution! Our team is currently working on resolving these issues, please subscribe to them to receive updates.
Datasets >
US Energy Information Administration (EIA)
Dataset by Energy Information Administration
The US Energy Information Administration (EIA) datasets by the Department of the Treasury tracks national and international oil production and consumption. The data covers 190 datasets, starts in January 1991, and is delivered on a daily frequency. This dataset is created by QuantConnect processing and caching the EIA archives.
The Treasury Department is the executive agency responsible for promoting economic prosperity and ensuring the financial security of the United States. The Department is responsible for a wide range of activities such as advising the President on economic and financial issues, encouraging sustainable economic growth, and fostering improved governance in financial institutions. The Department of the Treasury operates and maintains systems that are critical to the nation's financial infrastructure, such as the production of coin and currency, the disbursement of payments to the American public, revenue collection, and the borrowing of funds necessary to run the federal government.
The following snippet demonstrates how to request data from the EIA dataset:
from QuantConnect.DataSource import *
self.dataset_symbol = self.add_data(USEnergy, USEnergy.petroleum.united_states.weekly_net_imports_of_total_petroleum_products).symbol
using QuantConnect.DataSource;
_datasetSymbol = AddData<USEnergy>(USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).Symbol;
The following table describes the dataset properties:
Property | Value |
---|---|
Start Date | January 1991 |
Asset Coverage | 190 Datasets |
Data Density | Sparse |
Resolution | Daily |
Timezone | New York |
The EIA dataset enables you to monitor national and international oil production and consumption in you trading strategies. Examples include the following strategies:
For more example algorithms, see Examples.
The EIA dataset provides USEnergy objects, which have the following attributes:
The following table shows the accessor code you need to add each EIA dataset to your algorithm:
Symbol | Accessor Code | Description |
---|---|---|
UnitedStates | ||
PET.WGFRPUS2.W |
| U.S. Refiner and Blender Adjusted Net Production of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WGFSTUS1.W |
| U.S. Ending Stocks of Finished Motor Gasoline in Thousand Barrels (Mbbl) |
PET.WGFUPUS2.W |
| U.S. Product Supplied of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WCSSTUS1.W |
| U.S. Ending Stocks of Crude Oil in SPR in Thousand Barrels (Mbbl) |
PET.WDGRPUS2.W |
| U.S. Refiner and Blender Net Production of Distillate Fuel Oil Greater than 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WDGSTUS1.W |
| U.S. Ending Stocks of Distillate Fuel Oil, Greater Than 500 ppm Sulfur in Thousand Barrels (Mbbl) |
PET.WDIEXUS2.W |
| U.S. Exports of Total Distillate in Thousand Barrels per Day (Mbbl/d) |
PET.WDIIMUS2.W |
| U.S. Imports of Distillate Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WDIRPUS2.W |
| U.S. Refiner and Blender Net Production of Distillate Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WKJSTUS1.W |
| U.S. Ending Stocks of Kerosene-Type Jet Fuel in Thousand Barrels (Mbbl) |
PET.WKJUPUS2.W |
| U.S. Product Supplied of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WGTIMUS2.W |
| U.S. Imports of Total Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WGTSTUS1.W |
| U.S. Ending Stocks of Total Gasoline in Thousand Barrels (Mbbl) |
PET.WGIRIUS2.W |
| U.S. Gross Inputs into Refineries in Thousand Barrels per Day (Mbbl/d) |
PET.WGRIMUS2.W |
| U.S. Imports of Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WGRRPUS2.W |
| U.S. Refiner and Blender Net Production of Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WGRSTUS1.W |
| U.S. Ending Stocks of Reformulated Motor Gasoline in Thousand Barrels (Mbbl) |
PET.WDISTUS1.W |
| U.S. Ending Stocks of Distillate Fuel Oil in Thousand Barrels (Mbbl) |
PET.WDIUPUS2.W |
| U.S. Product Supplied of Distillate Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WKMRPUS2.W |
| U.S. Refiner and Blender Net Production of Military Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WOCLEUS2.W |
| U. S. Operable Crude Oil Distillation Capacity in Thousand Barrels per Calendar Day (Mbbl/d) |
PET.WPLSTUS1.W |
| U.S. Propylene Nonfuel Use Stocks at Bulk Terminals in Thousand Barrels (Mbbl) |
PET.WPRSTUS1.W |
| U.S. Ending Stocks of Propane and Propylene in Thousand Barrels (Mbbl) |
PET.WPULEUS3.W |
| U.S. Percent Utilization of Refinery Operable Capacity in Percent (%) |
PET.WREEXUS2.W |
| U.S. Exports of Residual Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WREIMUS2.W |
| U.S. Imports of Residual Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WKCRPUS2.W |
| U.S. Refiner and Blender Net Production of Commercial Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WKJEXUS2.W |
| U.S. Exports of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WKJIMUS2.W |
| U.S. Imports of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WKJRPUS2.W |
| U.S. Refiner and Blender Net Production of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.WCESTUS1.W |
| U.S. Ending Stocks excluding SPR of Crude Oil in Thousand Barrels (Mbbl) |
PET.WCREXUS2.W |
| U.S. Exports of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WCRFPUS2.W |
| U.S. Field Production of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WCRIMUS2.W |
| U.S. Imports of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WCRNTUS2.W |
| U.S. Net Imports of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WCRRIUS2.W |
| U.S. Refiner Net Input of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WRERPUS2.W |
| U.S. Refiner and Blender Net Production of Residual Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WRESTUS1.W |
| U.S. Ending Stocks of Residual Fuel Oil in Thousand Barrels (Mbbl) |
PET.WREUPUS2.W |
| U.S. Product Supplied of Residual Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.WRPEXUS2.W |
| U.S. Exports of Total Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WRPIMUS2.W |
| U.S. Imports of Total Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WRPNTUS2.W |
| U.S. Net Imports of Total Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WRPUPUS2.W |
| U.S. Product Supplied of Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WTESTUS1.W |
| U.S. Ending Stocks excluding SPR of Crude Oil and Petroleum Products in Thousand Barrels (Mbbl) |
PET.WTTEXUS2.W |
| U.S. Exports of Crude Oil and Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WTTIMUS2.W |
| U.S. Imports of Crude Oil and Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WTTNTUS2.W |
| U.S. Net Imports of Crude Oil and Petroleum Products in Thousand Barrels per Day (Mbbl/d) |
PET.WTTSTUS1.W |
| U.S. Ending Stocks of Crude Oil and Petroleum Products in Thousand Barrels (Mbbl) |
PET.WUOSTUS1.W |
| U.S. Ending Stocks of Unfinished Oils in Thousand Barrels (Mbbl) |
PET.WG6TP_NUS_2.W |
| U.S. Refiner and Blender Net Production of Other Finished Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WD0TP_NUS_2.W |
| U.S. Refiner and Blender Net Production of Distillate Fuel Oil, 0 to 15 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WD1ST_NUS_1.W |
| U.S. Ending Stocks of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels (Mbbl) |
PET.WD1TP_NUS_2.W |
| U.S. Production of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WG1ST_NUS_1.W |
| U.S. Ending Stocks of Reformulated Motor Gasoline with Fuel ALcohol in Thousand Barrels (Mbbl) |
PET.WCRSTUS1.W |
| U.S. Ending Stocks of Crude Oil in Thousand Barrels (Mbbl) |
PET.WCSIMUS2.W |
| U.S. Crude Oil Imports by SPR in Thousand Barrels per Day (Mbbl/d) |
PET.WBCIMUS2.W |
| U.S. Imports of Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WBCSTUS1.W |
| U.S. Ending Stocks of Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.WCEIMUS2.W |
| U.S. Commercial Crude Oil Imports Excluding SPR in Thousand Barrels per Day (Mbbl/d) |
PET.WPRTP_NUS_2.W |
| U.S. Refiner, Blender, and Gas Plant Net Production of Propane and Propylene in Thousand Barrels per Day (Mbbl/d) |
PET.WG1TP_NUS_2.W |
| U.S. Refiner and Blender Net Production of Finished Reformulated Motor Gasoline with Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.WG3ST_NUS_1.W |
| U.S. Ending Stocks of Reformulated Motor Gasoline, Non-Oxygentated in Thousand Barrels (Mbbl) |
PET.WG4ST_NUS_1.W |
| U.S. Ending Stocks of Conventional Motor Gasoline in Thousand Barrels (Mbbl) |
PET.WG4TP_NUS_2.W |
| U.S. Refiner and Blender Net Production of Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WG5ST_NUS_1.W |
| U.S. Ending Stocks of Conventional Motor Gasoline with Fuel Ethanol in Thousand Barrels (Mbbl) |
PET.WG5TP_NUS_2.W |
| U.S. Refiner and Blender Net Production of Finished Conventional Motor Gasoline with Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.WG6ST_NUS_1.W |
| U.S. Ending Stocks of Other Conventional Motor Gasoline in Thousand Barrels (Mbbl) |
PET.WO6RI_NUS_2.W |
| U.S. Refiner and Blender Net Input of Conventional CBOB Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO6ST_NUS_1.W |
| U.S. Ending Stocks of Conventional CBOB Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.WO7RI_NUS_2.W |
| U.S. Refiner and Blender Net Input of Conventional GTAB Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO7ST_NUS_1.W |
| U.S. Ending Stocks of Conventional GTAB Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.WO9RI_NUS_2.W |
| U.S. Refiner and Blender Net Input of Conventional Other Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO9ST_NUS_1.W |
| U.S. Ending Stocks of Conventional Other Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.W_EPD2F_PWR_NUS_DPG.W |
| U.S. No. 2 Heating Oil Wholesale/Resale Price in Dollars per Gallon ($/gal) |
PET.W_EPC0_SKA_NUS_MBBL.W |
| U.S. Crude Oil Stocks in Transit (on Ships) from Alaska in Thousand Barrels (Mbbl) |
PET.W_EPC0_VSD_NUS_DAYS.W |
| U.S. Days of Supply of Crude Oil excluding SPR in Number of Days (Days) |
PET.W_EPD0_VSD_NUS_DAYS.W |
| U.S. Days of Supply of Total Distillate in Number of Days (Days) |
PET.W_EPD2F_PRS_NUS_DPG.W |
| U.S. Weekly No. 2 Heating Oil Residential Price in Dollars per Gallon ($/gal) |
PET.WPRUP_NUS_2.W |
| U.S. Product Supplied of Propane and Propylene in Thousand Barrels per Day (Mbbl/d) |
PET.WWOUP_NUS_2.W |
| U.S. Product Supplied of Other Oils in Thousand Barrels per Day (Mbbl/d) |
PET.WBCRI_NUS_2.W |
| U.S. Refiner and Blender Net Input of Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WD0ST_NUS_1.W |
| U.S. Ending Stocks of Distillate Fuel Oil, 0 to 15 ppm Sulfur in Thousand Barrels (Mbbl) |
PET.W_EPJK_VSD_NUS_DAYS.W |
| U.S. Days of Supply of Kerosene-Type Jet Fuel in Number of Days (Days) |
PET.W_EPM0_VSD_NUS_DAYS.W |
| U.S. Days of Supply of Total Gasoline in Number of Days (Days) |
PET.W_EPPA_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Asphalt and Road Oil in Thousand Barrels (Mbbl) |
PET.W_EPPK_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Kerosene in Thousand Barrels (Mbbl) |
PET.W_EPDM10_VUA_NUS_2.W |
| U.S. Supply Adjustment of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WG5IM_NUS-Z00_2.W |
| U.S. Imports of Conventional Motor Gasoline with Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.WG6IM_NUS-Z00_2.W |
| U.S. Imports of Other Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WD0IM_NUS-Z00_2.W |
| U.S. Imports of Distillate Fuel Oil, 0 to 15 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WD1IM_NUS-Z00_2.W |
| U.S. Imports of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WD2IM_NUS-Z00_2.W |
| U.S. Imports of Distillate Fuel Oil, Greater than 500 to 2000 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WPRIM_NUS-Z00_2.W |
| U.S. Imports of Propane and Propylene in Thousand Barrels per Day (Mbbl/d) |
PET.WO7IM_NUS-Z00_2.W |
| U.S. Imports of Conventional GTAB Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WD3IM_NUS-Z00_2.W |
| U.S. Imports of Distillate Fuel Oil, Greater than 2000 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.WG1IM_NUS-Z00_2.W |
| U.S. Imports of Reformulated Motor Gasoline with Fuel ALcohol in Thousand Barrels per Day (Mbbl/d) |
PET.WG4IM_NUS-Z00_2.W |
| U.S. Imports of Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.WO9IM_NUS-Z00_2.W |
| U.S. Imports of Conventional Other Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO6IM_NUS-Z00_2.W |
| U.S. Imports of Conventional CBOB Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPPK_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Kerosene in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPPK_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Kerosene in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPPO6_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Other Oils (Excluding Fuel Ethanol) in Thousand Barrels (Mbbl) |
PET.W_EPPR_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Residual Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0R_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0R_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPOOXE_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Fuel Ethanol in Thousand Barrels (Mbbl) |
PET.W_EPD0_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Distillate Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPD0_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Distillate Fuel Oil in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPJK_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPJK_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Kerosene-Type Jet Fuel in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPLLPA_PRS_NUS_DPG.W |
| U.S. Propane Residential Price in Dollars per Gallon ($/gal) |
PET.W_EPLLPA_PWR_NUS_DPG.W |
| U.S. Propane Wholesale/Resale Price in Dollars per Gallon ($/gal) |
PET.W_EPOBGRR_YIR_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Input of Motor Gasoline Blending Components, RBOB in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPL0XP_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of NGPLs/LRGs (Excluding Propane/Propylene) in Thousand Barrels (Mbbl) |
PET.W_EPLLPZ_VSD_NUS_DAYS.W |
| U.S. Days of Supply of Propane/Propylene in Number of Days (Days) |
PET.W_EPM0C_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0C_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_VUA_NUS_MBBLD.W |
| U.S. Supply Adjustment of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_YPR_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Production of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPD00H_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Distillate Fuel Oil, Greater Than 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPD00H_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Distillate Fuel Oil, Greater Than 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPDM10_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPDM10_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Distillate Fuel Oil, Greater than 15 to 500 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPDXL0_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Distillate Fuel Oil, 0 to 15 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPDXL0_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Distillate Fuel Oil, 0 to 15 ppm Sulfur in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CA_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Conventional Motor Gasoline with Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CA_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Conventional Motor Gasoline with Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CO_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Other Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CO_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Other Conventional Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RA_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Reformulated Motor Gasoline with Fuel ALcohol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RA_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Reformulated Motor Gasoline with Fuel ALcohol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPOOXE_YOP_NUS_MBBLD.W |
| U.S. Oxygenate Plant Production of Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAL55_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Motor Gasoline, Finished, Conventional, Ed55 and Lower in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAL55_YPT_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Production of Finished Conventional Motor Gasoline, Ed 55 and Lower in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAL55_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Motor Gasoline, Finished, Conventional, Ed55 and Lower in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_EEX_NUS-Z00_MBBLD.W |
| U.S. Exports of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0F_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Finished Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RO_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Other Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RO_YPT_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Production of Other Finished Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RO_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Other Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPOBGRR_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Motor Gasoline Blending Components, RBOB in Thousand Barrels (Mbbl) |
PET.W_EPOOXE_YIR_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Input of Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAG55_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Motor Gasoline, Finished, Conventional, Greater than Ed55 in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAL55_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Motor Gasoline, Finished, Conventional, Ed55 and Lower in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPC0_IMU_NUS-Z00_MBBLD.W |
| U.S. Crude Oil Imports for SPR by Others in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAG55_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Conventional Motor Gasoline, Greater than Ed55 in Thousand Barrels (Mbbl) |
PET.W_EPOOXE_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Fuel Ethanol in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPL0XP_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Liquefied Petroleum Gasses Less Propane/Propylene in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPLLPZ_EEX_NUS-Z00_MBBLD.W |
| U.S. Exports of Propane and Propylene in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0RO_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Other Reformulated Motor Gasoline in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAG55_YPB_NUS_MBBLD.W |
| U.S. Blender Net Production of Motor Gasoline, Finished, Conventional, Greater Than Ed55 in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAG55_YPT_NUS_MBBLD.W |
| U.S. Refiner and Blender Net Production of Finished Conventional Motor Gasoline, Greater than Ed 55 in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAG55_YPY_NUS_MBBLD.W |
| U.S. Refiner Net Production of Finished Conventional Motor Gasoline, Greater than Ed 55 in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPM0CAL55_SAE_NUS_MBBL.W |
| U.S. Ending Stocks of Conventional Motor Gasoline, Ed55 and Lower in Thousand Barrels (Mbbl) |
PET.W_EPPK_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Kerosene in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPPO4_EEX_NUS-Z00_MBBLD.W |
| U.S. Exports of Other Oils in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPPO6_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports of Other Oils (Excluding Fuel Ethanol) in Thousand Barrels per Day (Mbbl/d) |
PET.W_EPOBGRR_IM0_NUS-Z00_MBBLD.W |
| U.S. Imports from All Countries of Motor Gasoline Blending Components, RBOB in Thousand Barrels per Day (Mbbl/d) |
PET.EMM_EPMR_PTE_NUS_DPG.W |
| U.S. Regular All Formulations Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMM_PTE_NUS_DPG.W |
| U.S. Midgrade All Formulations Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMP_PTE_NUS_DPG.W |
| U.S. Premium All Formulations Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPM0_PTE_NUS_DPG.W |
| U.S. All Grades All Formulations Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPM0R_PTE_NUS_DPG.W |
| U.S. All Grades Reformulated Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMMR_PTE_NUS_DPG.W |
| U.S. Midgrade Reformulated Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMPR_PTE_NUS_DPG.W |
| U.S. Premium Reformulated Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMRU_PTE_NUS_DPG.W |
| U.S. Regular Conventional Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMRR_PTE_NUS_DPG.W |
| U.S. Regular Reformulated Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMD_EPD2D_PTE_NUS_DPG.W |
| U.S. No 2 Diesel Retail Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMPU_PTE_NUS_DPG.W |
| U.S. Premium Conventional Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPMMU_PTE_NUS_DPG.W |
| U.S. Midgrade Conventional Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMM_EPM0U_PTE_NUS_DPG.W |
| U.S. All Grades Conventional Retail Gasoline Prices in Dollars per Gallon ($/gal) |
PET.EMD_EPD2DXL0_PTE_NUS_DPG.W |
| U.S. No 2 Diesel Ultra Low Sulfur (0-15 ppm) Retail Prices in Dollars per Gallon ($/gal) |
PET.W_EPC0_SAX_NUS_MBBL.W |
| U.S. Ending Stocks excluding SPR and including Lease Stock of Crude Oil in Thousand Barrels (Mbbl) |
PET.EMD_EPD2DM10_PTE_NUS_DPG.W |
| U.S. No 2 Diesel Low Sulfur (15-500 ppm) Retail Prices in Dollars per Gallon ($/gal) |
PET.WO3IM_NUS-Z00_2.W |
| U.S. Imports of Reformulated RBOB with Alcohol Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO4IM_NUS-Z00_2.W |
| U.S. Imports of Reformulated RBOB with Ether Gasoline Blending Components in Thousand Barrels per Day (Mbbl/d) |
PET.WO2ST_NUS_1.W |
| U.S. Ending Stocks of Reformulated GTAB Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.WO3ST_NUS_1.W |
| U.S. Ending Stocks of Reformulated RBOB with Alcohol Gasoline Blending Components in Thousand Barrels (Mbbl) |
PET.WO4ST_NUS_1.W |
| U.S. Ending Stocks of Reformulated RBOB with Ether Gasoline Blending Components in Thousand Barrels (Mbbl) |
EquatorialGuinea | ||
PET.W_EPC0_IM0_NUS-NEK_MBBLD.W |
| U.S. Imports from Equatorial Guinea of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Iraq | ||
PET.W_EPC0_IM0_NUS-NIZ_MBBLD.W |
| U.S. Imports from Iraq of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Kuwait | ||
PET.W_EPC0_IM0_NUS-NKU_MBBLD.W |
| U.S. Imports from Kuwait of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Mexico | ||
PET.W_EPC0_IM0_NUS-NMX_MBBLD.W |
| U.S. Imports from Mexico of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Nigeria | ||
PET.W_EPC0_IM0_NUS-NNI_MBBLD.W |
| U.S. Imports from Nigeria of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Norway | ||
PET.W_EPC0_IM0_NUS-NNO_MBBLD.W |
| U.S. Imports from Norway of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Russia | ||
PET.W_EPC0_IM0_NUS-NRS_MBBLD.W |
| U.S. Imports from Russia of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
SaudiArabia | ||
PET.W_EPC0_IM0_NUS-NSA_MBBLD.W |
| U.S. Imports from Saudi Arabia of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
UnitedKingdom | ||
PET.W_EPC0_IM0_NUS-NUK_MBBLD.W |
| U.S. Imports from United Kingdom of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Venezuela | ||
PET.W_EPC0_IM0_NUS-NVE_MBBLD.W |
| U.S. Imports from Venezuela of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Algeria | ||
PET.W_EPC0_IM0_NUS-NAG_MBBLD.W |
| U.S. Imports from Algeria of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Angola | ||
PET.W_EPC0_IM0_NUS-NAO_MBBLD.W |
| U.S. Imports from Angola of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Brazil | ||
PET.W_EPC0_IM0_NUS-NBR_MBBLD.W |
| U.S. Imports from Brazil of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Canada | ||
PET.W_EPC0_IM0_NUS-NCA_MBBLD.W |
| U.S. Imports from Canada of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Congo | ||
PET.W_EPC0_IM0_NUS-NCF_MBBLD.W |
| U.S. Imports from Congo (Brazzaville) of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Colombia | ||
PET.W_EPC0_IM0_NUS-NCO_MBBLD.W |
| U.S. Imports from Colombia of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
Ecuador | ||
PET.W_EPC0_IM0_NUS-NEC_MBBLD.W |
| U.S. Imports from Ecuador of Crude Oil in Thousand Barrels per Day (Mbbl/d) |
To add EIA data to your algorithm, call the AddDataadd_data method. Save a reference to the dataset Symbol so you can access the data later in your algorithm.
class USEnergyDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2019, 1, 1)
self.set_end_date(2020, 6, 1)
self.set_cash(100000)
self.dataset_symbol = self.add_data(USEnergy, USEnergy.petroleum.united_states.weekly_net_imports_of_total_petroleum_products).symbol
namespace QuantConnect
{
public class USEnergyDataAlgorithm: QCAlgorithm
{
private Symbol _datasetSymbol;
public override void Initialize()
{
SetStartDate(2019, 1, 1);
SetEndDate(2020, 6, 1);
SetCash(100000);
_datasetSymbol = AddData<USEnergy>(USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).Symbol;
}
}
}
To get the current EIA data, index the current Slice with the dataset Symbol. Slice objects deliver unique events to your algorithm as they happen, but the Slice may not contain data for your dataset at every time step. To avoid issues, check if the Slice contains the data you want before you index it.
def on_data(self, slice: Slice) -> None:
if slice.contains_key(self.dataset_symbol):
data_point = slice[self.dataset_symbol]
self.log(f"{self.dataset_symbol} value at {slice.time}: {data_point.value}")
public override void OnData(Slice slice)
{
if (slice.ContainsKey(_datasetSymbol))
{
var dataPoint = slice[_datasetSymbol];
Log($"{_datasetSymbol} value at {slice.Time}: {dataPoint.Value}");
}
}
To iterate through all of the dataset objects in the current Slice, call the Getget method.
def on_data(self, slice: Slice) -> None:
for dataset_symbol, data_point in slice.get(USEnergy).items():
self.log(f"{dataset_symbol} value at {slice.time}: {data_point.value}")
public override void OnData(Slice slice)
{
foreach (var kvp in slice.Get<USEnergy>())
{
var datasetSymbol = kvp.Key;
var dataPoint = kvp.Value;
Log($"{datasetSymbol} value at {slice.Time}: {dataPoint.Value}");
}
}
To get historical EIA data, call the Historyhistory method with the dataset Symbol. If there is no data in the period you request, the history result is empty.
# DataFrame
history_df = self.history(self.dataset_symbol, 100, Resolution.DAILY)
# Dataset objects
history_bars = self.history[USEnergy](self.dataset_symbol, 100, Resolution.DAILY)
var history = History<USEnergy>(_datasetSymbol, 100, Resolution.Daily);
For more information about historical data, see History Requests.
To remove your subscription to EIA data, call the RemoveSecurityremove_securitymethod.
self.remove_security(self.dataset_symbol)
RemoveSecurity(_datasetSymbol);
The EIA dataset provides USEnergy objects, which have the following attributes:
The following example algorithm buy a petroleum company when net imports of petroleum products are increasing. When the net imports are decreasing, it short sells the company.
from AlgorithmImports import *
from QuantConnect.DataSource import *
class USEnergyDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2020, 1, 1)
self.set_end_date(2021, 6, 1)
self.set_cash(100000)
# Requesting data, we trade Abraxas Petroleum Corporation (AXAS) as the proxy of petroleum investment
self.axas = self.add_equity("AXAS", Resolution.DAILY).symbol
# Request US weekly net import petroleum products data for trade signal generation
us_energy_symbol = self.add_data(USEnergy, USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).symbol
# Historical data
history = self.history(USEnergy, us_energy_symbol, 60, Resolution.DAILY)
self.log(f"We got {len(history)} items from our history request")
# Get latest value for net imports of petroleum products for trade system readiness
self.previous_value = history.loc[us_energy_symbol].values[-1, -1]
def on_data(self, slice: Slice) -> None:
# Trade based on the current net imports of petroleum products
points = slice.Get(USEnergy)
current_value = None
for point in points.Values:
current_value = point.Value
if current_value is None:
return
# Buy when net imports of petroleum products are increasing, assuming the demand increases that bring up the petroleum price
# Hence the inventory and revenue of the proxy increase, supporting the stock price goes up
if current_value > self.previous_value:
self.set_holdings(self.axas, 1)
# Short sell when net imports of petroleum products are decreasing, decreasing demand lowers the petroleum price and the proxy stock price
elif current_value < self.previous_value:
self.set_holdings(self.axas, -1)
self.previous_value = current_value
using QuantConnect.DataSource;
namespace QuantConnect
{
public class USEnergyDataAlgorithm : QCAlgorithm
{
private decimal? previousValue;
private Symbol tradableSymbol;
public override void Initialize()
{
SetStartDate(2020, 1, 1);
SetEndDate(2021, 6, 1);
SetCash(100000);
// Requesting data, we trade Abraxas Petroleum Corporation (AXAS) as the proxy of petroleum investment
tradableSymbol = AddEquity("AXAS", Resolution.Daily).Symbol;
// Request US weekly net import petroleum products data for trade signal generation
var USEnergySymbol = AddData<USEnergy>(USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).Symbol;
// Historical data
var history = History<USEnergy>(USEnergySymbol, 60, Resolution.Daily);
Debug($"We got {history.Count()} items from our history request");
// Get latest value for net imports of petroleum products for trade system readiness
previousValue = history.Last().Value;
}
public override void OnData(Slice slice)
{
// Trade based on the current net imports of petroleum products
var points = slice.Get<USEnergy>();
decimal? currentValue = null;
foreach (var point in points.Values)
{
currentValue = point.Value;
}
if (currentValue == null)
{
return;
}
// Buy when net imports of petroleum products are increasing, assuming the demand increases that bring up the petroleum price
// Hence the inventory and revenue of the proxy increase, supporting the stock price goes up
if (currentValue > previousValue)
{
SetHoldings(tradableSymbol, 1);
}
// Short sell when net imports of petroleum products are decreasing, decreasing demand lowers the petroleum price and the proxy stock price
if (currentValue < previousValue)
{
SetHoldings(tradableSymbol, -1);
}
previousValue = currentValue;
}
}
}
The following example algorithm buy a petroleum company when net imports of petroleum products are increasing. When the net imports are decreasing, it short sells the company.
from AlgorithmImports import *
from QuantConnect.DataSource import *
class USEnergyDataAlgorithm(QCAlgorithm):
def initialize(self) -> None:
self.set_start_date(2020, 1, 1)
self.set_end_date(2021, 6, 1)
self.set_cash(100000)
self.universe_settings.resolution = Resolution.DAILY
# We only trade Abraxas Petroleum Corporation (AXAS) as the proxy of petroleum investment
symbols = [Symbol.create("AXAS", SecurityType.EQUITY, Market.USA)]
self.add_universe_selection(ManualUniverseSelectionModel(symbols))
# A custom alpha model that emit trade insights based on US Energy data
self.add_alpha(USEnergyAlphaModel(self))
# Equally invest to dissipate non-systematic capital concentration risk on individual stock
self.set_portfolio_construction(EqualWeightingPortfolioConstructionModel())
class USEnergyAlphaModel(AlphaModel):
tradable_symbols = []
def __init__(self, algorithm: QCAlgorithm) -> None:
# Request US weekly net import petroleum products data for trade signal generation
self.us_energy_symbol = algorithm.add_data(USEnergy, USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).symbol
# Historical data
history = algorithm.history(USEnergy, self.us_energy_symbol, 60, Resolution.DAILY)
algorithm.log(f"We got {len(history)} items from our history request")
# Get latest value for net imports of petroleum products for trade system readiness
self.previous_value = history.loc[self.us_energy_symbol].values[-1, -1]
def update(self, algorithm: QCAlgorithm, slice: Slice) -> List[Insight]:
# Trade based on the current net imports of petroleum products
points = slice.Get(USEnergy)
current_value = None
for point in points.Values:
current_value = point.Value
if current_value is None:
return []
insights = []
for symbol in self.tradable_symbols:
# Buy when net imports of petroleum products are increasing, assuming the demand increases that bring up the petroleum price
# Hence the inventory and revenue of the proxy increase, supporting the stock price goes up
if current_value > self.previous_value:
insights += [Insight.price(symbol, timedelta(days=7), InsightDirection.UP)]
# Short sell when net imports of petroleum products are decreasing, decreasing demand lowers the petroleum price and the proxy stock price
elif current_value < self.previous_value:
insights += [Insight.price(symbol, timedelta(days=7), InsightDirection.DOWN)]
self.previous_value = current_value
return insights
def on_securities_changed(self, algorithm: QCAlgorithm, changes: SecurityChanges) -> None:
for security in changes.added_securities:
self.tradable_symbols.append(security.symbol)
using QuantConnect.DataSource;
namespace QuantConnect
{
public class USEnergyDataAlgorithm : QCAlgorithm
{
public override void Initialize()
{
SetStartDate(2020, 1, 1);
SetEndDate(2021, 6, 1);
SetCash(100000);
UniverseSettings.Resolution = Resolution.Daily;
// We only trade Abraxas Petroleum Corporation (AXAS) as the proxy of petroleum investment
var symbols = new[] {QuantConnect.Symbol.Create("AXAS", SecurityType.Equity, Market.USA)};
AddUniverseSelection(new ManualUniverseSelectionModel(symbols));
// A custom alpha model that emit trade insights based on US Energy data
AddAlpha(new USEnergyAlphaModel(this));
// Equally invest to dissipate non-systematic capital concentration risk on individual stock
SetPortfolioConstruction(new EqualWeightingPortfolioConstructionModel());
}
}
public class USEnergyAlphaModel : AlphaModel
{
private Symbol USEnergySymbol;
private List<Symbol> tradableSymbols = new List<Symbol>();
private decimal? previousValue;
public USEnergyAlphaModel(QCAlgorithm algorithm)
{
// Request US weekly net import petroleum products data for trade signal generation
USEnergySymbol = algorithm.AddData<USEnergy>(USEnergy.Petroleum.UnitedStates.WeeklyNetImportsOfTotalPetroleumProducts).Symbol;
// Historical data
var history = algorithm.History<USEnergy>(USEnergySymbol, 60, Resolution.Daily);
algorithm.Debug($"We got {history.Count()} items from our history request");
// Get latest value for net imports of petroleum products for trade system readiness
previousValue = history.Last().Value;
}
public override IEnumerable<Insight> Update(QCAlgorithm algorithm, Slice slice)
{
var insights = new List<Insight>();
// Trade based on the current net imports of petroleum products
var points = slice.Get<USEnergy>();
decimal? currentValue = null;
foreach (var point in points.Values)
{
currentValue = point.Value;
}
if (currentValue == null)
{
return insights;
}
foreach (var symbol in tradableSymbols)
{
// Buy when net imports of petroleum products are increasing, assuming the demand increases that bring up the petroleum price
// Hence the inventory and revenue of the proxy increase, supporting the stock price goes up
if (currentValue > previousValue)
{
insights.Add(Insight.Price(symbol, TimeSpan.FromDays(7), InsightDirection.Up));
}
// Short sell when net imports of petroleum products are decreasing, decreasing demand lowers the petroleum price and the proxy stock price
if (currentValue < previousValue)
{
insights.Add(Insight.Price(symbol, TimeSpan.FromDays(7), InsightDirection.Down));
}
}
previousValue = currentValue;
return insights;
}
public override void OnSecuritiesChanged(QCAlgorithm algorithm, SecurityChanges changes)
{
foreach (var security in changes.AddedSecurities)
{
tradableSymbols.Add(security.Symbol);
}
}
}
}
US Energy Information Administration (EIA) is allowed to be used in the cloud for personal and commercial projects for free. The data is permissioned for use within the licensed organization only
Free | Documentation
US Energy Information Administration (EIA) can be downloaded on premise with the LEAN CLI, for a charge per file downloaded. This download is for the licensed organization's internal LEAN use only and cannot be redistributed or converted in any format.
Starting at 5 QCC/file | Learn More
LEAN CLI is a cross-platform wrapper on the QuantConnect algorithmic trading engine called LEAN. The CLI makes using LEAN incredibly easy, reducing most of the pain points of developing and managing an algorithmic trading strategy to a few lines of bash.
Using the CLI you can download the same data QuantConnect hosts in the cloud for a small fee. These fees are per file downloaded, and are paid for in QuantConnect-Credits (QCC). We recommend purchasing credits to enable downloading.
The CLI command generator is a helpful tool to generate a copy-paste command to download this dataset from the form below.
lean data download \
--dataset "US Energy Information Administration (EIA)" \
--variable "pet.wcrexus2.w"
lean data download `
--dataset "US Energy Information Administration (EIA)" `
--variable "pet.wcrexus2.w"
EIA data in the QuantConnect Cloud for your backtesting and live trading purposes.
EIA archived in LEAN format for on premise backtesting and research. One file per ticker.
What people are saying about this
This product has not received any reviews yet, be the first to post one!
Rate the Module:
Provider offers 2 licensing options
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Dataset Status from to
No Runs
OK
Degraded
Failure
Explore free and paid datasets available on QuantConnect covering fundamentals, pricing, and alternative options.
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Configuration Keys
Environment Variables
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
File Link
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Lorem ipsum dolor sit amet conjectura lorem ipsum dolor sit amet conjectura lorem ipsum
Upload a manually created tar or zip file to all cloud data systems.
Add a link and click the Sync Dataset button to upload the dataset
Upload Destinations
The dataset synchronizer is an internal tool for the QuantConnect team to upload data to the
cloud data storage environments. It supports TAR files which are extracted in the root directory
of the cloud data environments.
Take extreme care to carefully structure your data TAR package with
the same folders as the LEAN data folder. Ensure all folders and file names are lowercase as Linux is case-sensitive.
Support
Algorithm Lab is your playground for developing and refining trading algorithms with QuantConnect. Utilize advanced tools, historical data, and robust backtesting to enhance your trading strategies. Transform your ideas into actionable insights and optimize your trading approach with ease.
Sign Up for FreeAlready have an account Log In.
â‘
â‘
â‘
â‘
â‘
Hover and click over the stars to rate us.
It looks like you are not fully satisfied with your experience on QuantConnect, please take a moment to let us know how we can improve our services for you:
If you have a minute to spare, please leave us a review on Trustpilot.
Stories like yours help others see the full potential of QuantConnect.
Organization Name |
---|
Upgrade to Team plan or higher to enable custom invoicing
Changes will be applied to future invoices.
Users will be able to join by following the link in the invitation email.
You’ve been invited by Jared Broad to join his G-Force Organization.
Would you like to accept the invitation?
Are you sure you want to delete the encryption key "undefined"?
Caution: We will not be able to decrypt encrypted projects without the original key.
Drag & Drop or
Keys are added to the local storage in your web browser and not uploaded to QuantConnect. To use an encrypted project on another computer you will need to bring a copy of the key.
This project is encrypted using the key .
This project will be encrypted using the key .