|
@@ -134,7 +134,7 @@ def ma(stock, num, data):
|
|
|
try:
|
|
|
i = (num - 1) * -1
|
|
|
df = pd.read_sql_query(text(
|
|
|
- 'select close_front from `%s_1d`'% stock), engine_stock.connect())
|
|
|
+ 'select close_front from `%s_1d`' % stock), engine_stock.connect())
|
|
|
except BaseException as e:
|
|
|
print(e)
|
|
|
return 9999999
|
|
@@ -170,7 +170,7 @@ def his_vol(stock, num):
|
|
|
|
|
|
|
|
|
def ma_judge(data, list_judge, rate, results):
|
|
|
- print(f'这个ma_judge的PID为:{os.getpid()},本轮计算:{len(list_judge)}个股')
|
|
|
+ # print(f'这个ma_judge的PID为:{os.getpid()},本轮计算:{len(list_judge)}个股')
|
|
|
for stock in list_judge:
|
|
|
current_price, open_price = data[stock]['lastPrice'], data[stock]['open']
|
|
|
MA5, MA10, MA20, MA30, MA60, MA120 = ma(stock, 5, data), ma(stock, 10, data), ma(stock, 20, data), ma(stock, 30,
|
|
@@ -189,12 +189,9 @@ def sell_trader(data):
|
|
|
# print('卖出函数:', dt.now())
|
|
|
positions = xt_trader.query_stock_positions(acc)
|
|
|
positions_dict = {positions[x].stock_code: positions[x].can_use_volume for x in range(0, len(positions))}
|
|
|
- print(f'今日可卖出个股总数:{len([value for value in positions_dict.values() if value != 0])}')
|
|
|
print(
|
|
|
f'目前持仓总数为:{len([positions[x].stock_code for x in range(0, len(positions)) if positions[x].volume != 0])}')
|
|
|
|
|
|
-
|
|
|
-
|
|
|
for stock, can_use_volume in positions_dict.items():
|
|
|
if stock in data and can_use_volume != 0:
|
|
|
current_price = data[stock]['lastPrice']
|
|
@@ -203,9 +200,12 @@ def sell_trader(data):
|
|
|
MA5_1 = ma_1(stock, 5)
|
|
|
df = pd.read_sql_query(text(
|
|
|
'select close_front, high_front from `%s_1d`' % stock), engine_stock.connect())
|
|
|
- print(f'{stock},持仓量为{can_use_volume}当前价:{current_price},MA5:{MA5},昨日MA5:{MA5_1},开始判断:')
|
|
|
+ print(f"{data[stock]['time']}, {stock},持仓量为{can_use_volume}当前价:{current_price},开盘价:{open_price},"
|
|
|
+ f"MA5:{MA5},昨日MA5:{MA5_1},开始判断:")
|
|
|
if current_price == xtdata.get_instrument_detail(stock).get('UpStopPrice') \
|
|
|
- or (df['close_front'][-1] == df['high_front'][-1] and df['close_front'][-1]/df['close_front'][-2] > 0.8):
|
|
|
+ or (df['close_front'].iloc[-1] == df['high_front'].iloc[-1]
|
|
|
+ and df['close_front'].iloc[-1] / df['close_front'].iloc[-2] > 1.08):
|
|
|
+ print(f"{stock}涨停或昨日涨幅超过8%,持股观察!{data[stock]['time']}")
|
|
|
continue
|
|
|
elif current_price < MA5 or MA5 < MA5_1:
|
|
|
print('卖出信号!!!!!!', stock, current_price)
|
|
@@ -220,7 +220,8 @@ def sell_trader(data):
|
|
|
print('价格:', current_price, open_price, MA5, MA5_1, '盈利乖离率超7%')
|
|
|
print(order_id, stock, can_use_volume)
|
|
|
else:
|
|
|
- print(f'本轮没有持仓股票信息!')
|
|
|
+ # print(f'本轮没有持仓股票信息!')
|
|
|
+ pass
|
|
|
engine_stock.dispose()
|
|
|
|
|
|
|
|
@@ -241,7 +242,7 @@ def buy_trader(data):
|
|
|
except BaseException as e:
|
|
|
print(e)
|
|
|
|
|
|
- if len(stock_pool)!=0:
|
|
|
+ if len(stock_pool) != 0:
|
|
|
list_judge = list(set(data.keys()) & set(stock_pool))
|
|
|
print(f'本轮有{len(data.keys())}条个股信息,而list_judge有:{len(list_judge)}')
|
|
|
else:
|
|
@@ -322,7 +323,8 @@ def buy_trader(data):
|
|
|
i = 2
|
|
|
volume = int((cash / i / current_price) // 100 * 100)
|
|
|
print('买入信号!!!!!!', stock, volume, current_price)
|
|
|
- order_id = xt_trader.order_stock(acc, stock, xtconstant.STOCK_BUY, volume, xtconstant.LATEST_PRICE,
|
|
|
+ order_id = xt_trader.order_stock(acc, stock, xtconstant.STOCK_BUY, volume,
|
|
|
+ xtconstant.LATEST_PRICE,
|
|
|
current_price, 'MA5策略', 'MA5趋势向上')
|
|
|
print(order_id)
|
|
|
else:
|
|
@@ -373,7 +375,10 @@ def bridge():
|
|
|
time.sleep(3)
|
|
|
else:
|
|
|
break
|
|
|
- print(f'MyPid is {os.getpid()}, now is {dt.now()},开盘了,session_id = {session_id}, \n, {xt_trader}')
|
|
|
+ print(f'MyPid is {os.getpid()}, now is {dt.now()},开盘了,session_id = {session_id}, \n')
|
|
|
+ positions = xt_trader.query_stock_positions(acc)
|
|
|
+ positions_dict = {positions[x].stock_code: positions[x].can_use_volume for x in range(0, len(positions))}
|
|
|
+ print(f'今日可卖出个股总数:{len([value for value in positions_dict.values() if value != 0])}')
|
|
|
stocks = xtdata.get_stock_list_in_sector('沪深A股')
|
|
|
seq = xtdata.subscribe_whole_quote(stocks, callback=trader)
|
|
|
run(seq, pid)
|
|
@@ -407,4 +412,3 @@ if __name__ == '__main__':
|
|
|
scheduler.start()
|
|
|
except (KeyboardInterrupt, SystemExit):
|
|
|
pass
|
|
|
-
|