pep8 conversion of python algos #1-25 (#7926)

* pep8 conversion of python algos

* address peer-review

* PEP8 updates/fixes

* More fixes

---------

Co-authored-by: Jhonathan Abreu <jdabreu25@gmail.com>
This commit is contained in:
Louis Szeto
2024-04-18 05:02:32 +08:00
committed by GitHub
parent 784e497691
commit ed7f3ebbbf
35 changed files with 735 additions and 727 deletions
@@ -15,23 +15,23 @@ from AlgorithmImports import *
class BasicCSharpIntegrationTemplateAlgorithm(QCAlgorithm):
def Initialize(self):
def initialize(self):
self.SetStartDate(2013,10, 7) #Set Start Date
self.SetEndDate(2013,10,11) #Set End Date
self.SetCash(100000) #Set Strategy Cash
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
self.AddEquity("SPY", Resolution.Second)
self.add_equity("SPY", Resolution.SECOND)
def OnData(self, data):
def on_data(self, data):
'''OnData 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.SetHoldings("SPY", 1)
if not self.portfolio.invested:
self.set_holdings("SPY", 1)
## Calculate value of sin(10) for both python and C#
self.Debug(f'According to Python, the value of sin(10) is {np.sin(10)}')
self.Debug(f'According to C#, the value of sin(10) is {Math.Sin(10)}')
self.debug(f'According to Python, the value of sin(10) is {np.sin(10)}')
self.debug(f'According to C#, the value of sin(10) is {Math.sin(10)}')