-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
424 lines (366 loc) · 18.3 KB
/
main.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
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
import os
import sys
import tda
from tda import auth, client
from tda.client import Client
from tda.auth import easy_client
from tda.orders.equities import equity_buy_limit
from tda.orders.common import Duration, Session
from tda.orders.common import OrderType
from tda.orders.generic import OrderBuilder
from tda.orders.options import OptionSymbol
from datetime import timedelta
from datetime import date
from time import sleep
import datetime
import calendar
import json
import config
try:
c = auth.client_from_token_file(config.token_path, config.api_key)
except FileNotFoundError:
from selenium import webdriver
with webdriver.Chrome(executable_path='C:/Python38-64/Lib/site-packages/chromedriver') as driver:
c = auth.client_from_login_flow(
driver, config.api_key, config.redirect_uri, config.token_path, config.account_id)
#EXECUTER
tickerInput = input("ENTER TICKER SYMBOL \n -> ")
ticker = tickerInput.upper()
security = input("ENTER THE SECURITY TYPE YOU WOULD LIKE TO TRADE \n (1) DERIVATIVES\n (2) EQUITIES \n -> ")
#DERIVATIVES
if security == '1':
optionCP = input("ENTER THE DERIVATIVE DIRECTION \n (1) CALL\n (2) PUT \n -> ")
#CALL
if optionCP == '1':
#STRIKE PRICE SELECTOR
contract_type = client.Client.Options.ContractType.CALL
strikePrice = int(input("ENTER STRIKE PRICE\n -> "))
strike = "%0.1f" % strikePrice
#DTE CALCULATOR
days_to_expirationInput = input("ENTER DAYS TILL EXPIRATION FOR YOUR CONTRACT\n -> ")
days_to_expiration = int(days_to_expirationInput)
today = datetime.date.today() + timedelta(days=days_to_expiration)
days_to_expirationSTR = str(today)
days_to_expirationDTE = days_to_expirationSTR + ':' + days_to_expirationInput
#CONTRACT SIZE
contractSize = input("ENTER THE NUMBER OF CONTRACTS YOU WOULD LIKE TO TRADE\n -> ")
#DATE
DTEyear = int(today.strftime('%Y'))
DTEday = int(today.strftime('%d'))
DTEmonth = int(today.strftime('%m'))
print('datetime.date year=' + str(DTEyear), 'month=' + str(DTEmonth), 'day=' + str(DTEday))
#CONTRACT LAST PRICE
response = c.get_option_chain(ticker)
json_data = json.loads(response.text)
lastPrice = json_data['callExpDateMap'][days_to_expirationDTE][strike][0]['last']
#ORDER BUILDER
symbolCall1 = OptionSymbol(ticker, datetime.date(year=DTEyear, month=DTEmonth, day=DTEday), 'C', strike).build()
symbolCall = str(symbolCall1).split('.')[0]
#ORDER EXECUTER
#tda.orders.options.option_buy_to_open_limit(symbolCall, int(contractSize), int(lastPrice))
#print('\norder sent\n')
print('THIS IS A WORK IN PROGESS(if you still want to continue open the code and remove the # sign on line 76 ')
print('\nORDER DETAILS FOR CONTRACT:', symbolCall, '\nTICKER SYMB.', ticker, '\nSTRIKE PRICE', strike, '\nDATE', days_to_expirationSTR, '\nDTE', days_to_expirationInput, '\nLAST TRADING PRICE', lastPrice)
#EQUITY
if security == '2':
equityLS = input("ENTER THE EQUITY DIRECTION \n (1) LONG\n (2) SHORT \n -> ")
#LONG
if equityLS == '1':
equitySize = input("ENTER SHARE SIZE \n (minimum 1) -> ")
response = c.get_quote(ticker)
json_data = json.loads(response.text)
lastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, lastPrice)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(lastPrice))
print('\norder sent\n')
#FIGHTER LONG
response = c.get_account(config.account_id, fields=client.Client.Account.Fields.ORDERS)
json_data = json.loads(response.text)
status = json_data['securitiesAccount']['orderStrategies'][0]['status']
print(json.dumps(response.json(), indent=4))
order_id = int(json_data['securitiesAccount']['orderStrategies'][0]['orderId'])
sleep(0.5)
while status == 'WORKING': #Working: The order is being processed at the exchange.
#os.system("cls")
print('Order not filled, redeploying fighter.')
print(order_id, ticker, equitySize, lastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(lastPrice))
print('\norder sent\n')
while status == 'CANCELED': #Canceled: The order has been canceled successfully.
print('\n orderID:', order_id)
statusCanceled0= input('The last order has been canceled, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'EXPIRED': #Expired: Order's time in force is up.
print('\norderID:', order_id)
statusCanceled0= input('The last order has expired, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'REJECTED': #Rejected: The order is rejected by the exchange.
print('\norderID:', order_id)
statusCanceled0= input('The last order has been rejected by the exchange, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'QUEUED': #Queued: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'FILLED': #Queued: Order processing is finished and the order is fully or partially filled.
print('\norderID:', order_id)
quantity = int(json_data['securitiesAccount']['orderStrategies'][0]['quantity'])
filledQuantity = int(json_data['securitiesAccount']['orderStrategies'][0]['filledQuantity'])
remainingQuantity = int(json_data['securitiesAccount']['orderStrategies'][0]['remainingQuantity'])
successQuantity = quantitiy ,'/', filledQuantity
if quantity == filledQuantity and remainingQuantity == 0:
print('Order processing is finished and the order is fully filled. \n(', successQuantity, ')filled')
else:
statusCanceled0= input('Order processing is finished and the order is partially filled.\ndo you want to fill the rest? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, remainingQuantity, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_buy_limit(ticker, int(remainingQuantity), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'ACCEPTED': #Accepted: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'REPLACED': #Queued: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_buy_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'PENDING_ACTIVATION': #PENDING_ACTIVATION:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'PENDING_CANCEL': #PENDING_CANCEL:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'PENDING_REPLACE': #PENDING_REPLACE:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_CONDITION': #AWAITING_CONDITION:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_MANUAL_REVIEW': #AWAITING_MANUAL_REVIEW:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_PARENT_ORDER': #AWAITING_PARENT_ORDER:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_UR_OUR': #AWAITING_UR_OUR:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
else:
print('UNKNOWN ERROR\nexiting in 3 secs.')
sleep(3)
sys.exit()
#SHORT
if equityLS == '2':
equitySize = input("ENTER SHARE SIZE TO SELL \n (minimum 1) -> ")
response = c.get_quote(ticker)
json_data = json.loads(response.text)
lastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, lastPrice)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(lastPrice))
print('\norder sent\n')
#FIGHTER SHORT
response = c.get_account(config.account_id, fields=client.Client.Account.Fields.ORDERS)
json_data = json.loads(response.text)
status = json_data['securitiesAccount']['orderStrategies'][0]['status']
#print(json.dumps(response.json(), indent=4))
order_id = int(json_data['securitiesAccount']['orderStrategies'][0]['orderId'])
sleep(0.5)
while status == 'WORKING': #Working: The order is being processed at the exchange.
os.system("cls")
print('Order not filled, redeploying fighter.')
print(order_id, ticker, equitySize, lastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(lastPrice))
print('\norder sent\n')
while status == 'CANCELED': #Canceled: The order has been canceled successfully.
print('\n orderID:', order_id)
statusCanceled0= input('The last order has been canceled, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'EXPIRED': #Expired: Order's time in force is up.
print('\norderID:', order_id)
statusCanceled0= input('The last order has expired, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'REJECTED': #Rejected: The order is rejected by the exchange.
print('\norderID:', order_id)
statusCanceled0= input('The last order has been rejected by the exchange, do you want to retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'QUEUED': #Queued: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'FILLED': #Queued: Order processing is finished and the order is fully or partially filled.
print('\norderID:', order_id)
quantity = int(json_data['securitiesAccount']['orderStrategies'][0]['quantity'])
filledQuantity = int(json_data['securitiesAccount']['orderStrategies'][0]['filledQuantity'])
remainingQuantity = int(json_data['securitiesAccount']['orderStrategies'][0]['remainingQuantity'])
successQuantity = quantitiy ,'/', filledQuantity
if quantity == filledQuantity and remainingQuantity == 0:
print('Order processing is finished and the order is fully filled. \n(', successQuantity, ')filled')
else:
statusCanceled0= input('Order processing is finished and the order is partially filled.\ndo you want to fill the rest? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, remainingQuantity, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_sell_limit(ticker, int(remainingQuantity), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'ACCEPTED': #Accepted: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'REPLACED': #Queued: The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.
print('\norderID:', order_id)
statusCanceled0= input('The submitted order is waiting for processing which cannot be performed now, e.g., due to trading hours limitations.\ndo you want to cancel and retry? (y/n) \n ->')
statusCanceled = statusCanceled0.lower()
if statusCanceled == 'y':
response = c.get_quote(ticker)
json_data = json.loads(response.text)
FailedLastPrice = json_data[ticker]['lastPrice']
#print(ticker, equitySize, FailedLastPrice)
Client.cancel_order(order_id, config.account_id)
tda.orders.equities.equity_sell_limit(ticker, int(equitySize), int(FailedLastPrice))
print('\norder sent\n')
else:
sys.exit()
while status == 'PENDING_ACTIVATION': #PENDING_ACTIVATION:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'PENDING_CANCEL': #PENDING_CANCEL:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'PENDING_REPLACE': #PENDING_REPLACE:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_CONDITION': #AWAITING_CONDITION:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_MANUAL_REVIEW': #AWAITING_MANUAL_REVIEW:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_PARENT_ORDER': #AWAITING_PARENT_ORDER:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
while status == 'AWAITING_UR_OUR': #AWAITING_UR_OUR:
print('\norderID:', order_id)
print('\nunknown ERROR:', status)
else:
print('UNKNOWN ERROR\nexiting in 3 secs.')
sleep(3)
sys.exit()