-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLearningNote_Strat.py
More file actions
160 lines (118 loc) · 4.91 KB
/
Copy pathLearningNote_Strat.py
File metadata and controls
160 lines (118 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# SimpleMovingAverage Strategy
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from datetime import datetime
from HdfUtility import *
from dataUlt import *
import backtrader as bt
class TestStrategy(bt.Strategy):
params = (
('maperiod', 15),
('printlog', False),
)
def log(self, txt, dt=None):
# logging function
dt = dt or self.datas[0].datetime.date(0)
print('%s, %s' % (dt.isoformat(), txt))
def __init__(self):
# keep reference to specific line in dataseries
self.dataclose = self.datas[0].close
# To keep track of pending orders and buy price/commission
self.order = None
self.buyprice = None
self.buycomm = None
# Add a MovingAverageSimple indicator
self.sma = bt.indicators.SimpleMovingAverage(
self.datas[0], period=self.params.maperiod)
# # Indicators for the plotting show
# bt.indicators.ExponentialMovingAverage(self.datas[0], period=25)
# bt.indicators.WeightedMovingAverage(self.datas[0], period=25,
# subplot=True)
# bt.indicators.StochasticSlow(self.datas[0])
# bt.indicators.MACDHisto(self.datas[0])
# rsi = bt.indicators.RSI(self.datas[0])
# bt.indicators.SmoothedMovingAverage(rsi, period=10)
# bt.indicators.ATR(self.datas[0], plot=False)
def notify_order(self, order):
if order.status in [order.Submitted, order.Accepted]:
# Buy/Sell order submitted/accepted to/by broker - Nothing to do
return
if order.status in [order.Completed]:
if order.isbuy():
self.log('Buy Executed, Price: %.2f, Cost: %.2f, Comm %.2f' %
(order.executed.price,
order.executed.value,
order.executed.comm))
self.buyprice = order.executed.price
self.buycomm = order.executed.comm
else: # Sell
self.log('Sell Executed, Price: %.2f, Cost: %.2f, Comm %.2f' %
(order.executed.price,
order.executed.value,
order.executed.comm))
self.bar_executed = len(self)
elif order.status in [order.Canceled, order.Margin, order.Rejected]:
self.log('Order Canceled/Margin/Rejected')
self.order = None
def notify_trade(self, trade):
if not trade.isclosed:
return
self.log('Operation Profit, Gross %.2f, Net %.2f' %
(trade.pnl, trade.pnlcomm))
def next(self):
self.log('Close, %.2f' % self.dataclose[0])
if self.order:
return
if not self.position:
# in market
if self.dataclose[0] > self.sma[0]:
self.log('Buy Create, %.2f' % self.dataclose[0])
# Keep track of the created order to avoid a 2nd order
self.order = self.buy()
else:
# not in market
if self.dataclose[0] < self.sma[0]:
self.log('Sell Create, %.2f' % self.dataclose[0])
# Keep track of the created order to avoid a 2nd order
self.order = self.sell()
def stop(self):
self.log('(MA Period %2d) Ending Value %.2f' %
(self.params.maperiod, self.broker.getvalue()))
def hdf2bt(data):
data = data.reset_index().set_index([EXT_Bar_Date])
data[EXT_Bar_Close] = data[EXT_AdjFactor] * data[EXT_Bar_Close]
data.drop([EXT_Out_Asset,EXT_AdjFactor,EXT_Bar_PreSettle,EXT_Bar_Settle],axis=1,inplace=True)
return data
if __name__ == '__main__':
cerebro = bt.Cerebro()
# Add a strategy
cerebro.addstrategy(TestStrategy)
# optimize a strategy
# strats = cerebro.optstrategy(
# TestStrategy,
# maperiod=range(10, 31)) # 10-30
hdf = HdfUtility()
data0 = hdf.hdfRead(EXT_Hdf_Path,'CFE','IF','Stitch','00','1d',startdate='20120101',enddate='20171231')
data0 = hdf2bt(data0)
# Feed data
data = bt.feeds.PandasData(dataname=data0,
fromdate = datetime(2012, 1, 1),
todate = datetime(2017, 12, 31)
)
# Add the Data Feed to Cerebro
cerebro.adddata(data)
# Or Add Resampledata
# cerebro.resampledata(data, timeframe=bt.TimeFrame.Days)
# Set desired cash start
cerebro.broker.setcash(100000.0)
# Add a FixedSize sizer according to the stake
cerebro.addsizer(bt.sizers.FixedSize, stake=10)
# Set the commission - 0.1%
cerebro.broker.setcommission(commission=0.001)
# Get the starting condition
print('Starting Portfolio Value: %.2f' % cerebro.broker.getvalue())
# Run over and visulizing
cerebro.run()
cerebro.plot()
# Get the final result
print('Final Portfolio Value: %.2f' % cerebro.broker.getvalue())