forked from nkwilson/stock-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scan-fenji-funds-for-candidate.py
73 lines (48 loc) · 1.85 KB
/
scan-fenji-funds-for-candidate.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- coding: utf-8 -*-
import StockSignal
import StockPrice
import pandas
import pp
funds=pandas.read_csv('fenji-funds.csv')
today=pandas.datetime.now().strftime('%Y-%m-%d')
summary=None
result_file='fenji-funds-candidates-%s.csv' % today
def local_func(stock, code, name):
try:
ret = StockSignal.stock_signal_w_new_find_candidate_with_volume(stock)
ret.insert(0, 'code', code)
ret.insert(ret.columns.size, 'name', name)
return ret
except Exception, ex:
return None
ppservers = ()
jobs = []
job_server = pp.Server(12, ppservers=ppservers)
for i in range(funds['FundName'].count()):
if funds['FundCode'][i] < 500000:
stock='%s.SZ' % funds['FundCode'][i]
else:
stock='%s.SS' % funds['FundCode'][i]
jobs.append(job_server.submit(local_func, (stock, funds['FundCode'][i], funds['FundName'][i]), (), ("StockSignal","pandas", )))
for job in jobs:
ret = job()
if isinstance(ret, type(None)):
continue
if not isinstance(summary, type(None)):
summary=pandas.concat([ret, summary])
else:
summary=ret
if not isinstance(summary, type(None)):
summary=summary.sort(['signal', 'Volume'])
# summary=summary.sort_values(['code', 'Volume'])
summary.to_csv(result_file)
print summary.to_string();
# sold=summary.select(lambda x: True if summary.loc[x]['signal']<0 else False)
# hold=summary.select(lambda x: True if summary.loc[x]['signal']>0 else False)
# # select those signaled today
# sell_today=sold.select(lambda x: True if cmp(sold.loc[x][0], today)==0 else False)
# buy_today=hold.select(lambda x: True if cmp(hold.loc[x][0], today)==0 else False)
# sell_today.to_csv('sell-today-%s' % result_file)
# buy_today.to_csv('buy-today-%s' % result_file)
# print sell_today.to_string()
# print buy_today.to_string()