-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdown.py
59 lines (50 loc) · 1.66 KB
/
down.py
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
import logging
from positions import *
from algorithm import Algorithm
from indicators import *
from plot import *
import pprint
stocks = ['SPY']
cnt = 0
gain = []
bhgain = []
bhcnt = 0
results = {}
class DownTest(Algorithm):
def __init__(self, symbols, start_date, end_date):
self.check = 0.1
super(DownTest, self).__init__(symbols, start_date, end_date)
def handle_data(self, dt, symbols, keys, data):
for symbol in symbols:
yesterday = self.cube.go_back(dt, 1)
yesterday_c = self.cube.data[(symbol, 'close')][yesterday]
yesterday_l = self.cube.data[(symbol, 'low')][yesterday]
yesterday_h = self.cube.data[(symbol, 'high')][yesterday]
yesterday_o = self.cube.data[(symbol, 'open')][yesterday]
today_o = data[(symbol, 'open')]
today_c = data[(symbol, 'close')]
check = (yesterday_c - yesterday_l) / (yesterday_h - yesterday_l)
yesterday_move = 100 * (yesterday_c / yesterday_o)
gap_down = (today_o / yesterday_c)
global bhcnt
global bhgain
bhcnt += 1
bhgain.append(100 * ((today_c / today_o) - 1))
if yesterday != dt and check < self.check and gap_down < 1:
shares = int(10000/today_o)
global cnt
cnt+=1
global gain
gain.append(100 * ((today_c / today_o) - 1))
self.oms.add(Transaction(symbol, dt, today_o, shares))
self.oms.add(Transaction(symbol, dt, today_c, -shares))
def post_run(self):
self.results(bhfield='close')
for symbol in self.symbols:
self.plot(symbol=symbol).show()
test = DownTest(stocks, '20050101', '20130226')
test.run()
print cnt, 'trades'
print 'strategy avg trade',(sum(gain) / cnt)
print 'bh avg trade', (sum(bhgain) / bhcnt)
print 'tx cost', 8 * cnt