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
/
ScheduledEventsAlgorithm.py
Lean
/
Algorithm.Python
/
ScheduledEventsAlgorithm.py
ScheduledEventsAlgorithm.py 4.55 KB
Copy Edit Raw Blame History
Ashutosh authored 2024年04月20日 04:24 +08:00 . pep8 conversion of python algos (#7957)
# 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>
### Demonstration of the Scheduled Events features available in QuantConnect.
### </summary>
### <meta name="tag" content="scheduled events" />
### <meta name="tag" content="date rules" />
### <meta name="tag" content="time rules" />
class ScheduledEventsAlgorithm(QCAlgorithm):
def initialize(self):
'''Initialise the data and resolution required, as well as the cash and start-end dates for your algorithm. All algorithms must initialized.'''
self.set_start_date(2013,10,7) #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")
# events are scheduled using date and time rules
# date rules specify on what dates and event will fire
# time rules specify at what time on thos dates the event will fire
# schedule an event to fire at a specific date/time
self.schedule.on(self.date_rules.on(2013, 10, 7), self.time_rules.at(13, 0), self.specific_time)
# schedule an event to fire every trading day for a security the
# time rule here tells it to fire 10 minutes after SPY's market open
self.schedule.on(self.date_rules.every_day("SPY"), self.time_rules.after_market_open("SPY", 10), self.every_day_after_market_open)
# schedule an event to fire every trading day for a security the
# time rule here tells it to fire 10 minutes before SPY's market close
self.schedule.on(self.date_rules.every_day("SPY"), self.time_rules.before_market_close("SPY", 10), self.every_day_after_market_close)
# schedule an event to fire on a single day of the week
self.schedule.on(self.date_rules.every(DayOfWeek.WEDNESDAY), self.time_rules.at(12, 0), self.every_wed_at_noon)
# schedule an event to fire on certain days of the week
self.schedule.on(self.date_rules.every(DayOfWeek.MONDAY, DayOfWeek.FRIDAY), self.time_rules.at(12, 0), self.every_mon_fri_at_noon)
# the scheduling methods return the ScheduledEvent object which can be used for other things here I set
# the event up to check the portfolio value every 10 minutes, and liquidate if we have too many losses
self.schedule.on(self.date_rules.every_day(), self.time_rules.every(timedelta(minutes=10)), self.liquidate_unrealized_losses)
# schedule an event to fire at the beginning of the month, the symbol is optional
# if specified, it will fire the first trading day for that symbol of the month,
# if not specified it will fire on the first day of the month
self.schedule.on(self.date_rules.month_start("SPY"), self.time_rules.after_market_open("SPY"), self.rebalancing_code)
def on_data(self, data):
'''OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here.'''
if not self.portfolio.invested:
self.set_holdings("SPY", 1)
def specific_time(self):
self.log(f"SpecificTime: Fired at : {self.time}")
def every_day_after_market_open(self):
self.log(f"EveryDay.SPY 10 min after open: Fired at: {self.time}")
def every_day_after_market_close(self):
self.log(f"EveryDay.SPY 10 min before close: Fired at: {self.time}")
def every_wed_at_noon(self):
self.log(f"Wed at 12pm: Fired at: {self.time}")
def every_mon_fri_at_noon(self):
self.log(f"Mon/Fri at 12pm: Fired at: {self.time}")
def liquidate_unrealized_losses(self):
''' if we have over 1000 dollars in unrealized losses, liquidate'''
if self.portfolio.total_unrealized_profit < -1000:
self.log(f"Liquidated due to unrealized losses at: {self.time}")
self.liquidate()
def rebalancing_code(self):
''' Good spot for rebalancing code?'''
pass
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 によって変換されたページ (->オリジナル) /