반응형
자동매매 코드 백업
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
|
import win32com.client
import time
import pywinauto
import dashin_auto
import sys
from datetime import datetime
# 크레온 플러스 실행
dashin_auto.auto_open()
print('크레온플러스 실행중입니다.')
# 크레온 플러스 실행 대기
#time.sleep(60)
# 대신 API 인스턴스 바인딩
instCpCybos = win32com.client.Dispatch('CpUtil.CpCybos') #사이보스플러스 연결 상태를 확인하는 인스턴스
instStockChart = win32com.client.Dispatch("CpSysDib.StockChart") #차트데이터를 수신하는 인스턴스
instCpStockCode = win32com.client.Dispatch("CpUtil.CpStockCode") #주식 종목명 및 코드를 조회하는 인스턴스
instCpCodeMgr = win32com.client.Dispatch(("CpUtil.CpCodeMgr")) #각종 코드정보 및 코드리스트를 얻는 인스턴스
instMarketEye = win32com.client.Dispatch("CpSysDib.MarketEye") # 여러종목의 필요항목을 한번에 수신하는 인스턴스
instCpTdUtil = win32com.client.Dispatch("CpTrade.CpTdUtil") # 계좌정보
instCpTd0311 = win32com.client.Dispatch("CpTrade.CpTd0311") # 매수 매도 주문 인스턴스
instCpTdNew5331A = win32com.client.Dispatch("CpTrade.CpTdNew5331A") # 계좌별 매수 가능 금액/ 수량 데이터
instCpTdNew5331B = win32com.client.Dispatch("CpTrade.CpTdNew5331B") # 계좌별 매도 가능 수량데이터
instCpTd6033 = win32com.client.Dispatch("CpTrade.CpTd6033") # 계좌별 잔고 및 주문체결 평가현황데이터를 요청하고 수신한다
instStockMst = win32com.client.Dispatch("Dscbo1.StockMst") # 현재가, 호가 관련
instCpConclusion = win32com.client.Dispatch("Dscbo1.CpCOnclusion") # 주식 체결 실시간
# 계좌정보
instCpTdUtil.TradeInit()
accountNumber = instCpTdUtil.AccountNumber[0] # 계좌번호
accFlag = instCpTdUtil.GoodsList(accountNumber,1) #거래구분 코드
# 시간 정보
#프린트용
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
filedate = str(datetime.now().year)+'_'+str(datetime.now().month)+'_'+str(datetime.now().day)
filedate_yday = str(datetime.now().year)+'_'+str(datetime.now().month)+'_'+str(datetime.now().day-1)
#시간계산용
now = int(datetime.now().strftime('%H%M'))
# 연결 확인
def connect_check():
print('사이보스플러스 연결를 체크합니다. 주인님')
bConnect = instCpCybos.IsConnect
if (bConnect == 0):
print("PLUS가 정상적으로 연결되지 않았습니다요. ")
exit() # 프로그램 종료
elif (bConnect == 1):
print('접속 성공입니다요. 주인님')
def printsave(*a):
file = open('c:\\users\\administrator\\desktop\\auto_trade\\trade_record2.txt','a')
print(*a)
print(*a,file=file)
file.close()
def printsavetargetname(*a):
file = open('c:\\users\\administrator\\desktop\\auto_trade\\target_list\\%s_targetname.txt'%filedate,'a')
print(*a)
print(*a,file=file)
file.close()
def printsavetarget(*a):
file = open('c:\\users\\administrator\\desktop\\auto_trade\\target_list\\target.txt','a')
print(*a)
print(*a,file=file)
file.close()
# 타겟은 거감음봉, 바닥권 체크,(기간 내 최저점 대비 현재가가 너무 높지 않은 수준), 음봉 & 5일선 이격도99~102일 경우 매수
def targetsavetxt():
kospilist = instCpCodeMgr.GetStockListByMarket(1) # 코스피 코드리스트
kosdaqlist = instCpCodeMgr.GetStockListByMarket(2) # 코스닥 코드리스트
market = kospilist + kosdaqlist # 코스피 + 코스닥 코드리스트
market_stock = []
for code in market: # 주권 종목만 추출
check = instCpCodeMgr.GetStockSectionKind(code)
if check == 1:
market_stock.append(code)
for j,code in enumerate(market_stock):
time.sleep(0.25)
instStockChart.SetInputValue(0, code) # 종목 코드
instStockChart.SetInputValue(1, ord('2')) # '1' 날짜구간 , '2' 갯수
instStockChart.SetInputValue(4, 60) # 3개 값 수신 요청 0봉(현재봉) ~ 10봉 까지 11개 값
instStockChart.SetInputValue(5, [2,3,4,5,8]) # 시가0,고가1,저가2,종가3,거래량4
instStockChart.SetInputValue(6, ord('D')) # 일봉
instStockChart.SetInputValue(9, ord('1')) # 수정주가
instStockChart.BlockRequest() # 입력값을 api 요청
codename = instCpStockCode.CodeToName(code)
# 11일 거래량 모음 / 0봉제외 10봉 평균 거래량을 구하고자 함.
volumes = []
for i in range(10):
volume = instStockChart.GetDataValue(4,i+2)
volumes.append(volume)
averagevolume_2to11 = sum(volumes) / 10
# 60일 종가 모음 / 60일 중 최저 종가와 현재가를 비교하고자 함
lowprices = []
for k in range(60):
lowprice = instStockChart.GetDataValue(2,k)
lowprices.append(lowprice)
low_60 = min(lowprices)
start_0 = instStockChart.GetDataValue(0,0)
end_0 = instStockChart.GetDataValue(3,0)
volume_0 = instStockChart.GetDataValue(4,0)
gap_0 = end_0 - start_0
start_1 = instStockChart.GetDataValue(0, 1)
end_1 = instStockChart.GetDataValue(3, 1)
volume_1 = instStockChart.GetDataValue(4, 1)
gap_1 = end_1 - start_1
rise_60 = round((end_0/low_60),2) * 100
print(codename, j, '/', len(market_stock))
#1봉은 2to11 평균 거래량 대비 1000% 이상 또는 1000만 거래량 이상
if ((volume_1 > (averagevolume_2to11 * 10)) or (volume_1 > 10000000)) and (gap_1 > 0) and (rise_60 < 200):
if (volume_0 < (volume_1 * 0.25)) and (gap_0 < 0):
print("타겟종목입니다요:",codename)
printsavetarget(code)
printsavetargetname((codename))
# 저장된 target_list.txt 를 읽어오는 함수
def target_list_read_txt():
target_list_b = []
f = open('C:\\Users\\Administrator\\Desktop\\auto_trade\\target_list\\target.txt', 'rt')
target_list_a = f.readlines()
for i in target_list_a:
a = i.split('\n')[0]
target_list_b.append(a)
target_list = list(set(target_list_b)) # 중복값을 제거
return target_list
# 보유종목 반환 함수
def bought_item(): # 보유종목 정보를 반환하는 함수 -> 종목보유여부 체크 및 매도 감시 시 활용
instCpTdNew5331B.SetInputValue(0,accountNumber)
instCpTdNew5331B.SetInputValue(1,accFlag[0])
instCpTdNew5331B.SetInputValue(3,ord('1'))
instCpTdNew5331B.SetInputValue(4,ord('1'))
instCpTdNew5331B.BlockRequest()
try:
savestock_code = instCpTdNew5331B.GetDataValue(0,0) # 보유종목 코드
savestock_name = instCpTdNew5331B.GetDataValue(1,0) # 보유종목 이름
savestock_quant = instCpTdNew5331B.GetDataValue(12,0) #보유종목 매도 가능 수량
return (savestock_name,savestock_quant,savestock_code)
except:
savestock_code = 'none'
savestock_name = 'none'
savestock_quant = 0
return (savestock_name,savestock_quant,savestock_code)
# 보유종목이 있는지 체크하는 함수
def bought_check():
instCpTdNew5331B.SetInputValue(0, accountNumber)
instCpTdNew5331B.SetInputValue(1, accFlag[0])
instCpTdNew5331B.SetInputValue(3, ord('1'))
instCpTdNew5331B.SetInputValue(4, ord('1'))
instCpTdNew5331B.BlockRequest()
try:
balance = instCpTdNew5331B.GetDataValue(12, 0) # 매도가능수량
if balance != 0:
return 1 #매도가능 수량이 있음
except:
return 0 #매도가능 수량이 없음 / 없으면 에러가 남
# 종목 선정 함수 1,2.....
# 1. 최근 10일 평균 거래량 대비 10배 거래량 달성 종목
def buy_observer(instStockChart,target_list): # target_list를 서치하여 1개의 종목을 찾아냄
check = 0
now = int(datetime.now().strftime('%H%M'))
will_buy_item = []
while check == 0:
for code in target_list: # tqrget_list의 종목 별 0~11봉 거래량 값을 입력값으로 설정
instStockChart.SetInputValue(0, code) #종목 코드
instStockChart.SetInputValue(1, ord('2')) #'1' 날짜구간 , '2' 갯수
instStockChart.SetInputValue(4, 11) # 5개 값 수신 요청 0봉(현재봉) ~ 10봉 까지 11개 값
instStockChart.SetInputValue(5, [2,5,8]) # 시가,종가,거래량
instStockChart.SetInputValue(6, ord('D')) # 일봉
instStockChart.SetInputValue(9, ord('1')) # 수정주가
instStockChart.BlockRequest() #입력값을 api 요청
time.sleep(0.25)
codename = instCpStockCode.CodeToName(code)
volumes = []
for j in range(10):
volume = instStockChart.GetDataValue(2,j+1)
volumes.append(volume)
maxvolume_10 = max(volumes) # 1to11봉 사이 최대 거래량
# 5일평균선
end_5 = []
for i in range(5):
end = instStockChart.GetDataValue(1,i)
end_5.append(end)
averageline_5 = sum(end_5) / 5 # 5일 평균값
start_0 = instStockChart.GetDataValue(0,0)
end_0 = instStockChart.GetDataValue(1,0)
volume_0 = instStockChart.GetDataValue(2,0)
gap = end_0 - start_0 # 양봉 여부 확인
#5일평균 이격도
aver5_gap = round(end_0 / averageline_5,2) * 100
# 음봉 / 5일선 이격도 99~102 / 10일내 최대 거래량 대비 25%
print("종목:",codename,"5일이격도:",aver5_gap)
if (gap<0) and ((aver5_gap >= 99)and(aver5_gap<=102)) and (volume_0 < (maxvolume_10*0.25)) :
will_buy_item.append(code)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']','종목을 찾았습니다요. 주인님. 종목명은',codename,'입니다요')
check = 1 # while 문 탈출
break
if now > 1531:
print('장이 종료되었습니다.')
check = 1
break
return will_buy_item
# will_buy_item 호가 출력 및 반환 함수
def item_hoga_data(will_buy_item): # 호가 정보를 출력하는 함수 / 매수 주문 시 단가로 활용/ 1차 호가주문으로 활용해보자
instStockMst.SetInputValue(0,will_buy_item)
instStockMst.BlockRequest()
item_buy_hoga_1 = instStockMst.GetDataValue(1,0) # 매수 1차 호가 // 매수 주문 시 활용
item_buy_hoga_2 = instStockMst.GetDataValue(1, 1)
item_buy_hoga_3 = instStockMst.GetDataValue(1, 2)
item_sell_hoga_1 = instStockMst.GetDataValue(0, 0) # 매도 1차 호가
item_sell_hoga_2 = instStockMst.GetDataValue(0, 1)
item_sell_hoga_3 = instStockMst.GetDataValue(0, 2)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
print('[',date,timenow,']','호가정보입니다요.')
print(instStockMst.GetDataValue(0,2))
print(instStockMst.GetDataValue(0,1))
print(instStockMst.GetDataValue(0,0))
print('--------------------')
print(instStockMst.GetDataValue(1,0))
print(instStockMst.GetDataValue(1,1))
print(instStockMst.GetDataValue(1,2))
return (item_buy_hoga_1,item_buy_hoga_2,item_buy_hoga_3,
item_sell_hoga_1,item_sell_hoga_2,item_sell_hoga_3)
#매수 정보 반환 함수
def buy_possible(will_buy_item,buy_hoga): # 매수를 위한 정보 / 호가 정보를 인수롤 받아오도록 수정해야함.
instCpTdNew5331A.SetInputValue(0, accountNumber) # 계좌번호
instCpTdNew5331A.SetInputValue(1, accFlag[0]) # 상품관리 구분 코드
instCpTdNew5331A.SetInputValue(2, will_buy_item) # 2 - (string) 종목코드[default:""]- 수량조회시입력
instCpTdNew5331A.SetInputValue(3, '01') #일반/ fok로 주문하면될듯
instCpTdNew5331A.SetInputValue(4, buy_hoga) # 4 - (long) 주문단가[default:0] - 수량조회시입력
instCpTdNew5331A.SetInputValue(5, 'Y') # 5 - Y:증거금 100 %
instCpTdNew5331A.SetInputValue(6, ord('2')) # 6 - (char)조회구분코드; '1'=금액조회[default], '2'=수량조회
instCpTdNew5331A.BlockRequest()
possible_amount = int(instCpTdNew5331A.GetHeaderValue(10)) # 증거금 100% 가능 금액 조회
possible_quant = int(instCpTdNew5331A.GetHeaderValue(18)) # 증거금 100% 주문 가능 수량 조회
print('주문가능금액:',possible_amount)
print('주문가능수량:',possible_quant,'\n입니다요')
return (possible_quant,possible_amount)
#매수 주문 함수
def buy_order(item,quant,hoga): # 매수주문
instCpTd0311.SetInputValue(0,'2')
instCpTd0311.SetInputValue(1,accountNumber)
instCpTd0311.SetInputValue(2,accFlag[0])
instCpTd0311.SetInputValue(3,item)
instCpTd0311.SetInputValue(4,quant)
instCpTd0311.SetInputValue(5,hoga)
instCpTd0311.SetInputValue(7,'2') #FOK
instCpTd0311.SetInputValue(8,'01') #01보통 03시장가 13최우선지정가
instCpTd0311.BlockRequest()
#계좌 수익률 반환 함수
def benefit_ratio(): # 계좌 수익률을 출력하는 함수 / 매도 감시 시 활용
instCpTd6033.SetInputValue(0,accountNumber)
instCpTd6033.SetInputValue(1,accFlag[0])
instCpTd6033.SetInputValue(3,'1')
instCpTd6033.BlockRequest()
#print(instCpTd6033.GetHeaderValue(8)) # 수익률 / 수익률을 기준으로 손절 익절 매도주문을 진행 / 수수료 감안해야함
ratio = instCpTd6033.GetDataValue(11,0)
return ratio
#호가 출력 및 반환 함수
def save_hoga_data(savestock_code): # 호가 정보를 출력하는 함수 / 매도 주문 시 단가로 활용/ 1차 호가주문으로 활용해보자
instStockMst.SetInputValue(0, savestock_code)
instStockMst.BlockRequest()
save_buy_hoga_1 = instStockMst.GetDataValue(1, 0) # 매수 1차 호가 // 매수 주문 시 활용
save_buy_hoga_2 = instStockMst.GetDataValue(1, 1)
save_buy_hoga_3 = instStockMst.GetDataValue(1, 2)
save_sell_hoga_1 = instStockMst.GetDataValue(0, 0) # 매도 1차 호가
save_sell_hoga_2 = instStockMst.GetDataValue(0, 1)
save_sell_hoga_3 = instStockMst.GetDataValue(0, 2)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
print('[',date,timenow,']','호가정보입니다요.')
print(instStockMst.GetDataValue(0,2))
print(instStockMst.GetDataValue(0,1))
print(instStockMst.GetDataValue(0,0))
print('--------------------')
print(instStockMst.GetDataValue(1,0))
print(instStockMst.GetDataValue(1,1))
print(instStockMst.GetDataValue(1,2))
return (save_buy_hoga_1,save_buy_hoga_2,save_buy_hoga_3,
save_sell_hoga_1,save_sell_hoga_2,save_sell_hoga_3)
# 매도감시 함수 / 수익률이 익절선, 손절선 만족 시 매도 주문 실행 / 장중에만 실행시키려면?
def sell_obsever():
print('매도 감시중입니다요. 주인님')
savestock_name, savestock_quant, savestock_code = bought_item()
check = 0
#ratio_count = 0 # 임시로 무한루프를 종료하기 위한 기능
while check == 0:
time.sleep(1)
now = int(datetime.now().strftime('%H%M'))
ratio = benefit_ratio()
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
print('[',date,timenow,']',savestock_name,'종목의 현재수익률입니다요:',ratio)
if ratio > 110: # 익절
print('얏호 익절 신호입니다요')
check = 1
return 1
elif ratio < 90: # 손절
print('손절입니다 도망치십시요~!')
check = 1
return 0
if now > 1530:
check = 1
continue
#매도주문 함수
def sell_order(item,quant,hoga): # 매도주문
instCpTd0311.SetInputValue(0,'1') # 매도
instCpTd0311.SetInputValue(1,accountNumber)
instCpTd0311.SetInputValue(2,accFlag[0])
instCpTd0311.SetInputValue(3,item)
instCpTd0311.SetInputValue(4,quant)
instCpTd0311.SetInputValue(5,hoga)
instCpTd0311.SetInputValue(7,'2')
instCpTd0311.SetInputValue(8,'01')
instCpTd0311.BlockRequest()
#계좌별 잔고 평가 현황
def balance_check():
instCpTd6033.SetInputValue(0,accountNumber)
instCpTd6033.SetInputValue(1,accFlag[0])
instCpTd6033.BlockRequest()
balance = instCpTd6033.GetHeaderValue(3)
return balance
#연결 여부 체크
connect_check()
#타겟 리스트 셋팅
targetsavetxt()
target_list = target_list_read_txt() # target_list 호출 //
#현재 시간 호출
now = int(datetime.now().strftime('%H%M'))
# 시간이 9시00분 전이거나 15시30분 이후면 장외 대기
while now < 900:
now = int(datetime.now().strftime('%H%M'))
print('장 전 입니다요.')
time.sleep(20)
# 시간이 9시 이상이거나 15시 30분보다 작으면 장 중으로 코드 수행
print('장이 열립니다요!')
while now >= 900 and now < 1530: #장 중에만 반복 # 테스트시 1
now = int(datetime.now().strftime('%H%M'))
# 보유종목 체크
boughtcheck = bought_check() # 0:미보유중 1:보유중
#보유 종목이 있을 경우 매도감시 및 매도주문
if boughtcheck == 1:
print('보유종목 정보를 가져와보겠습니다요')
savestock_name,savestock_quant,savestock_code = bought_item()
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']',savestock_name,'종목을',savestock_quant,'주 보유중입니다요')
#sell_check로 익절 및 손절 반복 감시 수행
sell_check = sell_obsever()
if sell_check == 1 : #익절 신호 확인 시 매도 정보 추출
print('익절 신호입니다요!!') # 매수 1호가에 익절
save_buy_hoga_1, save_buy_hoga_2, save_buy_hoga_3,\
save_sell_hoga_1, save_sell_hoga_2, save_sell_hoga_3\
= save_hoga_data(savestock_code)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']',savestock_name,'종목',savestock_quant,'주를 ',save_buy_hoga_1,\
'원에 매도 주문 신청합니다요')
instCpTdUtil.TradeInit()
sell_order(savestock_code,savestock_quant,save_buy_hoga_1)
printsave('매도 주문 완료입니다 주인님')
print('매도 체결 대기 중입니다요.')
# 재진입 지양
target_list.remove(savestock_code)
# savestock_name이 none이 되면 보유 종목이 없는 것.
while savestock_name != 'none':
savestock_name,savestock_quant,savestock_code = bought_item()
time.sleep(1)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']','익절 완료입니다요'\
)
print('새로운 종목을 찾습니다요')
boughtcheck = bought_check()
continue
elif sell_check == 0: # 손절 신호 확인 시 매도 정보 추출
print('손실입니다요!!')
save_buy_hoga_1, save_buy_hoga_2, save_buy_hoga_3,\
save_sell_hoga_1, save_sell_hoga_2, save_sell_hoga_3\
= save_hoga_data(savestock_code)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']',savestock_name, '종목', savestock_quant, '주를', save_buy_hoga_1,
'원에 매도 주문 신청합니다요')
instCpTdUtil.TradeInit()
sell_order(savestock_code,savestock_quant,save_buy_hoga_1)
print('매도 주문 완료입니다요 주인님')
target_list.remove(savestock_code)
print('매도 체결 대기 중입니다요.')
while savestock_name != 'none':
savestock_name, savestock_quant, savestock_code = bought_item()
time.sleep(1)
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']','손절 완료입니다요')
print('새로운 종목을 찾습니다요')
boughtcheck = bought_check()
continue
# 보유종목이 없을 경우 매수 종목 탐색
if boughtcheck == 0 :
#계좌체크
possible_amount = balance_check()
print("주인님, 총알입니다요 : ",possible_amount)
will_buy_item = buy_observer(instStockChart,target_list)
will_buy_item_name = instCpStockCode.CodeToName(will_buy_item[0])
item_buy_hoga_1, item_buy_hoga_2, item_buy_hoga_3,\
item_sell_hoga_1, item_sell_hoga_2, item_sell_hoga_3\
=item_hoga_data(will_buy_item[0])
if item_sell_hoga_1 == 0:
print("상한가종목입니다요")
item_sell_hoga_1 = item_buy_hoga_1
possible_quant = int(possible_amount / item_sell_hoga_1)
if possible_quant == 0:
print('총알이 부족합니다요,')
print('다른 종목을 찾습니다요')
target_list.remove(will_buy_item[0])
if len(target_list) == 0:
print('살 수 있는 종목이 없습니다요')
quit()
continue
if possible_quant > 0:
print('매수를 진행합니다요')
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave('[',date,timenow,']',will_buy_item_name,'종목',possible_quant,'주를',
item_sell_hoga_1,'원에 매수합니다요')
instCpTdUtil.TradeInit()
buy_order(will_buy_item[0],possible_quant,item_sell_hoga_1)
print('매수주문을 완료하였습니다요')
print('체결 완료 대기중입니다요')
buy_complete_check = 0
time_check_a = int(datetime.now().strftime('%H%M'))
while buy_complete_check == 0 :
savestock_name, savestock_quant, savestock_code\
=bought_item()
time.sleep(1)
# 매수 주문 완료 후 시간 체크
time_check_b =int(datetime.now().strftime('%H%M'))
if time_check_b - time_check_a > 3:
print('3분 초과하여 매수주문 취소합니다요')
print('종목 재검색을 합니다요.')
target_list.remove(will_buy_item[0])
buy_complete_check = 1
continue
if possible_quant == savestock_quant:
buy_complete_check = 1
date = datetime.now().strftime('%D')
timenow = datetime.now().strftime('%H:%M')
printsave(']',date,timenow,']','매수 체결 완료입니다요.')
continue
# 15시 30분 이후 타겟종목 저장 작업 수행
now = int(datetime.now().strftime('%H%M'))
if now > 1530:
print('targetlist를 추출합니다.')
targetsavetxt()
print('종목추출완료, 프로그램 종료합니다요.')
quit()
|
cs |
반응형
'취미 및 과정 > 주식' 카테고리의 다른 글
[주식] 자동매매 일지 / 220128/금 (0) | 2022.01.29 |
---|---|
[주식] 주식 자동매매 테스트_ 자동매매 체계 (0) | 2022.01.27 |
[주식] 자동 매매 테스트 (0) | 2022.01.25 |
[주식] 파이썬 자동 매매 테스트_크레온 플러스 API (2) | 2022.01.11 |
[파이썬] print문 txt로 저장하기 (0) | 2022.01.09 |