Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Donate
Please sign in before you donate.
Scan WeChat QR to Pay
Cancel
Complete
Prompt
Switch to Alipay.
OK
Cancel
1 Star 0 Fork 0

boxigg/Lean

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (15)
Tags (4153)
master
copilot/find-syntax-test-issue
dynamic-cache-mock-20230220
bug-milk-class-3-future-options-expiration
bug-buying-power-model-convergence
ccxt-pro-integration
feature-ib-fa-groups
feature-python-dataframe-performance-2
feature-notebook-engine
bug-4764-option-auto-exercise-early-market-close-regression-algorithm
equity-taq-wip
performance-nary-tree-synchronizer
feature-optimize-python-load
feature-1093-vwap-order-type
desktop-mk-ii
17757
17758
17755
17756
17752
17753
17754
17749
17750
17751
17746
17747
17748
17735
17736
17737
17738
17739
17740
17741
master
Branches (15)
Tags (4153)
master
copilot/find-syntax-test-issue
dynamic-cache-mock-20230220
bug-milk-class-3-future-options-expiration
bug-buying-power-model-convergence
ccxt-pro-integration
feature-ib-fa-groups
feature-python-dataframe-performance-2
feature-notebook-engine
bug-4764-option-auto-exercise-early-market-close-regression-algorithm
equity-taq-wip
performance-nary-tree-synchronizer
feature-optimize-python-load
feature-1093-vwap-order-type
desktop-mk-ii
17757
17758
17755
17756
17752
17753
17754
17749
17750
17751
17746
17747
17748
17735
17736
17737
17738
17739
17740
17741
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (15)
Tags (4153)
master
copilot/find-syntax-test-issue
dynamic-cache-mock-20230220
bug-milk-class-3-future-options-expiration
bug-buying-power-model-convergence
ccxt-pro-integration
feature-ib-fa-groups
feature-python-dataframe-performance-2
feature-notebook-engine
bug-4764-option-auto-exercise-early-market-close-regression-algorithm
equity-taq-wip
performance-nary-tree-synchronizer
feature-optimize-python-load
feature-1093-vwap-order-type
desktop-mk-ii
17757
17758
17755
17756
17752
17753
17754
17749
17750
17751
17746
17747
17748
17735
17736
17737
17738
17739
17740
17741
Lean
/
Algorithm.Python
/
HistoryAlgorithm.py
Lean
/
Algorithm.Python
/
HistoryAlgorithm.py
HistoryAlgorithm.py 8.95 KB
Copy Edit Raw Blame History
Jhonathan Abreu authored 2025年12月22日 21:50 +08:00 . Replace RestShap with HttpClient (#9143)
# QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
# Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from AlgorithmImports import *
### <summary>
### This algorithm demonstrates the various ways you can call the History function,
### what it returns, and what you can do with the returned values.
### </summary>
### <meta name="tag" content="using data" />
### <meta name="tag" content="history and warm up" />
### <meta name="tag" content="history" />
### <meta name="tag" content="warm up" />
class HistoryAlgorithm(QCAlgorithm):
def initialize(self):
self.set_start_date(2013,10, 8) #Set Start Date
self.set_end_date(2013,10,11) #Set End Date
self.set_cash(100000) #Set Strategy Cash
# Find more symbols here: http://quantconnect.com/data
self.add_equity("SPY", Resolution.DAILY)
IBM = self.add_data(CustomDataEquity, "IBM", Resolution.DAILY)
# specifying the exchange will allow the history methods that accept a number of bars to return to work properly
IBM.exchange = EquityExchange()
# we can get history in initialize to set up indicators and such
self.daily_sma = SimpleMovingAverage(14)
# get the last calendar year's worth of SPY data at the configured resolution (daily)
trade_bar_history = self.history([self.securities["SPY"].symbol], timedelta(365))
self.assert_history_count("History<TradeBar>([\"SPY\"], timedelta(365))", trade_bar_history, 250)
# get the last calendar day's worth of SPY data at the specified resolution
trade_bar_history = self.history(["SPY"], timedelta(1), Resolution.MINUTE)
self.assert_history_count("History([\"SPY\"], timedelta(1), Resolution.MINUTE)", trade_bar_history, 390)
# get the last 14 bars of SPY at the configured resolution (daily)
trade_bar_history = self.history(["SPY"], 14)
self.assert_history_count("History([\"SPY\"], 14)", trade_bar_history, 14)
# get the last 14 minute bars of SPY
trade_bar_history = self.history(["SPY"], 14, Resolution.MINUTE)
self.assert_history_count("History([\"SPY\"], 14, Resolution.MINUTE)", trade_bar_history, 14)
# get the historical data from last current day to this current day in minute resolution
# with Fill Forward and Extended Market options
interval_bar_history = self.history(["SPY"], self.time - timedelta(1), self.time, Resolution.MINUTE, True, True)
self.assert_history_count("History([\"SPY\"], self.time - timedelta(1), self.time, Resolution.MINUTE, True, True)", interval_bar_history, 960)
# get the historical data from last current day to this current day in minute resolution
# with Extended Market option
interval_bar_history = self.history(["SPY"], self.time - timedelta(1), self.time, Resolution.MINUTE, False, True)
self.assert_history_count("History([\"SPY\"], self.time - timedelta(1), self.time, Resolution.MINUTE, False, True)", interval_bar_history, 919)
# get the historical data from last current day to this current day in minute resolution
# with Fill Forward option
interval_bar_history = self.history(["SPY"], self.time - timedelta(1), self.time, Resolution.MINUTE, True, False)
self.assert_history_count("History([\"SPY\"], self.time - timedelta(1), self.time, Resolution.MINUTE, True, False)", interval_bar_history, 390)
# get the historical data from last current day to this current day in minute resolution
interval_bar_history = self.history(["SPY"], self.time - timedelta(1), self.time, Resolution.MINUTE, False, False)
self.assert_history_count("History([\"SPY\"], self.time - timedelta(1), self.time, Resolution.MINUTE, False, False)", interval_bar_history, 390)
# we can loop over the return value from these functions and we get TradeBars
# we can use these TradeBars to initialize indicators or perform other math
for index, trade_bar in trade_bar_history.loc["SPY"].iterrows():
self.daily_sma.update(index, trade_bar["close"])
# get the last calendar year's worth of custom_data data at the configured resolution (daily)
custom_data_history = self.history(CustomDataEquity, "IBM", timedelta(365))
self.assert_history_count("History(CustomDataEquity, \"IBM\", timedelta(365))", custom_data_history, 250)
# get the last 10 bars of IBM at the configured resolution (daily)
custom_data_history = self.history(CustomDataEquity, "IBM", 14)
self.assert_history_count("History(CustomDataEquity, \"IBM\", 14)", custom_data_history, 14)
# we can loop over the return values from these functions and we'll get Custom data
# this can be used in much the same way as the trade_bar_history above
self.daily_sma.reset()
for index, custom_data in custom_data_history.loc["IBM"].iterrows():
self.daily_sma.update(index, custom_data["value"])
# get the last 10 bars worth of Custom data for the specified symbols at the configured resolution (daily)
all_custom_data = self.history(CustomDataEquity, self.securities.keys(), 14)
self.assert_history_count("History(CustomDataEquity, self.securities.keys(), 14)", all_custom_data, 14 * 2)
# NOTE: Using different resolutions require that they are properly implemented in your data type. If your
# custom data source has different resolutions, it would need to be implemented in the GetSource and
# Reader methods properly.
#custom_data_history = self.history(CustomDataEquity, "IBM", timedelta(7), Resolution.MINUTE)
#custom_data_history = self.history(CustomDataEquity, "IBM", 14, Resolution.MINUTE)
#all_custom_data = self.history(CustomDataEquity, timedelta(365), Resolution.MINUTE)
#all_custom_data = self.history(CustomDataEquity, self.securities.keys(), 14, Resolution.MINUTE)
#all_custom_data = self.history(CustomDataEquity, self.securities.keys(), timedelta(1), Resolution.MINUTE)
#all_custom_data = self.history(CustomDataEquity, self.securities.keys(), 14, Resolution.MINUTE)
# get the last calendar year's worth of all custom_data data
all_custom_data = self.history(CustomDataEquity, self.securities.keys(), timedelta(365))
self.assert_history_count("History(CustomDataEquity, self.securities.keys(), timedelta(365))", all_custom_data, 250 * 2)
# we can also access the return value from the multiple symbol functions to request a single
# symbol and then loop over it
single_symbol_custom = all_custom_data.loc["IBM"]
self.assert_history_count("all_custom_data.loc[\"IBM\"]", single_symbol_custom, 250)
for custom_data in single_symbol_custom:
# do something with 'IBM.custom_data_equity' custom_data data
pass
custom_data_spyvalues = all_custom_data.loc["IBM"]["value"]
self.assert_history_count("all_custom_data.loc[\"IBM\"][\"value\"]", custom_data_spyvalues, 250)
for value in custom_data_spyvalues:
# do something with 'IBM.custom_data_equity' value data
pass
def on_data(self, data):
'''on_data event is the primary entry point for your algorithm. Each new data point will be pumped in here.
Arguments:
data: Slice object keyed by symbol containing the stock data
'''
if not self.portfolio.invested:
self.set_holdings("SPY", 1)
def assert_history_count(self, method_call, trade_bar_history, expected):
count = len(trade_bar_history.index)
if count != expected:
raise AssertionError("{} expected {}, but received {}".format(method_call, expected, count))
class CustomDataEquity(PythonData):
def get_source(self, config, date, is_live):
zip_file_name = LeanData.generate_zip_file_name(config.Symbol, date, config.Resolution, config.TickType)
source = Globals.data_folder + "/equity/usa/daily/" + zip_file_name
return SubscriptionDataSource(source)
def reader(self, config, line, date, is_live):
if line == None:
return None
custom_data = CustomDataEquity()
custom_data.symbol = config.symbol
csv = line.split(",")
custom_data.time = datetime.strptime(csv[0], '%Y%m%d %H:%M')
custom_data.end_time = custom_data.time + timedelta(days=1)
custom_data.value = float(csv[1])
return custom_data
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/boxigg/Lean.git
git@gitee.com:boxigg/Lean.git
boxigg
Lean
Lean
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /