-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSampleMOFSLOPENAPI.py
More file actions
398 lines (287 loc) · 11.9 KB
/
SampleMOFSLOPENAPI.py
File metadata and controls
398 lines (287 loc) · 11.9 KB
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
# Follow README.txt
# Install Packages
# Run following command in terminal to install required packages :
# pip install -r requirements.txt
from MOFSLOPENAPI import MOFSLOPENAPI
# # You will get Your api key from website
ApiKey = ""
# # userid and password is your trading account username and password
userid = ""
password = ""
Two_FA = ""
vendorinfo = ""
clientcode = None
# # if Your SourceId is web then pass browsername and browser version in case of Desktop you dont need to passanyting
SourceID = "Desktop" # Web,Desktop
browsername = "chrome"
browserversion = "104"
totp = ""
# NOTE:
# totp – Send the 6 digit OTP on login using any Authenticator App.
# OR pass it as blank and verify authtoken by verifyotp with otp received on phone or mail
# if otp expired use resendotp
# # Set Url for LIVE or UAT Testing
# # Enter Base Url for LIVE or UAT Testing
# # 1. For live
# # Base_Url = "https://openapi.motilaloswal.com"
# # 2. For UAT
# # Base_Url = "https://openapi.motilaloswaluat.com"
Base_Url = "https://openapi.motilaloswaluat.com"
# Initialize MofslOpenApi using Apikey, Base_Url and clientcode
Mofsl = MOFSLOPENAPI(ApiKey, Base_Url, clientcode, SourceID, browsername, browserversion)
# Uncomment print statement to execute
# Loginrequest will always be first request with each following request
# Login by Clientcode and password
print("--------------------------------Login--------------------------------")
# Mofsl.login(userid, password)
print(Mofsl.login(userid, password, Two_FA, totp, vendorinfo))
# print("--------------------------------verifyotp--------------------------------")
# otp = input("Enter Input: ")
# print(Mofsl.verifyotp(otp))
# print("--------------------------------resendotp--------------------------------")
# print(Mofsl.resendotp())
# # GetProfile response for dealer
# print("--------------------------------GetProfile--------------------------------")
# # Mofsl.GetProfile(clientcode)
# print(Mofsl.GetProfile(clientcode))
# # PlaceOrder
# print("--------------------------------PlaceOrder--------------------------------")
# # PlaceOrderInfo
# Orderinfo = {
# "clientcode":clientcode,
# "exchange":"NSE",
# "symboltoken":1660,
# "buyorsell":"BUY",
# "ordertype":"LIMIT",
# "producttype":"Normal",
# "orderduration":"GTD",
# "price":235,
# "triggerprice":0,
# "quantityinlot":2,
# "disclosedquantity":0,
# "amoorder":"N",
# "algoid":"",
# "goodtilldate":"28-Feb-2022",
# "tag":" "
# }
# # Mofsl.PlaceOrder(Orderinfo)
# print(Mofsl.PlaceOrder(Orderinfo))
# # ModifyOrder
# print("--------------------------------ModifyOrder--------------------------------")
# ModifiedOrderInfo = {
# "clientcode":clientcode,
# "uniqueorderid":"2600001T024312",
# "newordertype":"LIMIT",
# "neworderduration":"DAY",
# "newquantityinlot":100,
# "newdisclosedquantity":0,
# "newprice":235.50,
# "newtriggerprice":0,
# "newgoodtilldate": 0,
# "lastmodifiedtime": "14-May-2022 11:31:25",
# "qtytradedtoday": 0
# }
# # Mofsl.ModifyOrder(ModifiedOrderInfo)
# print(Mofsl.ModifyOrder(ModifiedOrderInfo))
# # CancelOrder
# print("--------------------------------CancelOrder--------------------------------")
# # orderid Will be recovered from orderbook
# # Mofsl.CancelOrder(orderid, clientcode)
# print(Mofsl.CancelOrder("2600001T024312", clientcode))
# # GetOrderBook
# print("--------------------------------GetOrderBook--------------------------------")
# OrderBookInfo = {
# "clientcode":clientcode,
# "dateandtime":"" #22-Dec-2022 15:16:02
# }
# # Mofsl.GetOrderBook(OrderBookInfo)
# print(Mofsl.GetOrderBook(OrderBookInfo))
# # GetTradeBook
# print("--------------------------------GetTradeBook--------------------------------")
# # Mofsl.GetTradeBook(clientcode)
# print(Mofsl.GetTradeBook(clientcode))
# # GetPosition
# print("--------------------------------GetPosition--------------------------------")
# # Mofsl.GetPosition(clientcode)
# print(Mofsl.GetPosition(clientcode))
# # GetDPHolding
# print("--------------------------------GetHolding--------------------------------")
# # Mofsl.GetDPHolding(clientcode)
# print(Mofsl.GetDPHolding(clientcode))
# # PositionConversion
# print("--------------------------------PositionConversion--------------------------------")
# # "clientcode":"" "KAL005" Optional only for dealer
# PositionConversionInfo = {
# "clientcode":clientcode,
# "exchange":"NSE",
# "scripcode":1660,
# "quantity":1,
# "oldproduct":"NORMAL",
# "newproduct":"VALUEPLUS"
# }
# # Mofsl.PositionConversion(PositionConversionInfo)
# print(Mofsl.PositionConversion(PositionConversionInfo))
# # GetReportMarginSummary
# print("--------------------------------GetReportMarginSummary--------------------------------")
# # Mofsl.GetReportMarginSummary(clientcode)
# print(Mofsl.GetReportMarginSummary(clientcode))
# # GetReportMarginDetail
# print("--------------------------------GetReportMarginDetail--------------------------------")
# # Mofsl.GetReportMarginDetail(clientcode)
# print(Mofsl.GetReportMarginDetail(clientcode))
# # GetLtp
# print("--------------------------------GetLtp--------------------------------")
# # "clientcode":"" "KAL005" Optional only for dealer
# LTPData = {
# "clientcode":clientcode,
# "exchange":"BSE",
# "scripcode":500317
# }
# # Mofsl.GetLtp(LTPData)
# print(Mofsl.GetLtp(LTPData))
# # GetInstrumentFile
# print("--------------------------------GetInstrumentFile--------------------------------")
# # Mofsl.GetInstrumentFile(exchangename, clientcode)
# print(Mofsl.GetInstrumentFile("NSEFO",clientcode))
# # GetOrderDetailByUniqueorderID
# print("--------------------------------GetOrderDetailByUniqueorderID--------------------------------")
# # Mofsl.GetOrderDetailByUniqueorderID(uniqueorderid, clientcode)
# print(Mofsl.GetOrderDetailByUniqueorderID("2600001T024312",clientcode))
# # GetTradeDetailByUniqueorderID
# print("--------------------------------GetTradeDetailByUniqueorderID--------------------------------")
# # Mofsl.GetTradeDetailByUniqueorderID(uniqueorderid, clientcode)
# # print(Mofsl.GetTradeDetailByUniqueorderID("0400057FIGN049",clientcode))
# # GetBrokerageDetail
# print("--------------------------------GetBrokerageDetail--------------------------------")
# BrokerageDetailInfo = {
# "clientcode":clientcode,
# "exchangename":"NSE",
# "series":"A"
# }
# # Mofsl.GetBrokerageDetail(BrokerageDetailInfo)
# print(Mofsl.GetBrokerageDetail(BrokerageDetailInfo))
# # Logout
# print("--------------------------------Logout--------------------------------")
# # Mofsl.logout(clientcode)
# print(Mofsl.logout(clientcode))
# # Trade Webhook
# print("--------------------------------TradeWebhook--------------------------------")
# # Mofsl.TradeWebhook(userid)
# print(Mofsl.TradeWebhook(userid))
# --------------------------------------------------------------------------------------------------------
# -----------------------------------------------WebSocket------------------------------------------------
# --------------------------------------------------------------------------------------------------------
# Broadcast_connect
def Broadcast_on_open(ws1):
# print("########Broadcast_Opened########")
# print("AuthValidate after connection opened")
# Exchange -BSE, NSE, NSEFO, MCX, NSECD, NCDEX
# Exchange Type- CASH,DERIVATIVES Scrip Code-eg 532540
Mofsl.Register("NSE", "CASH", 11536)
Mofsl.Register("BSE", "CASH", 532540)
Mofsl.Register("MCX", "DERIVATIVES", 245470)
Mofsl.Register("NSEFO", "DERIVATIVES",55917)
Mofsl.Register("NCDEX", "DERIVATIVES",59259)
# Mofsl.UnRegister("BSE", "CASH", 532540)
# Index BSE, NSE
# Mofsl.IndexRegister("NSE")
# Mofsl.IndexRegister("BSE")
# Mofsl.IndexUnregister("NSE")
# Mofsl.IndexUnregister("BSE")
# Broadcast Logout
# Mofsl.Broadcast_Logout()
def Broadcast_on_message(ws1, message_type, message):
if message_type == "Index":
print(message)
elif(message_type == "LTP"):
print(message)
elif(message_type == "MarketDepth"):
print(message)
elif(message_type == "DayOHLC"):
print(message)
elif(message_type == "DPR"):
print(message)
elif(message_type == "OpenInterest"):
print(message)
else:
print(message)
pass
# print(message, message_type)
def Broadcast_on_close(ws1, close_status_code, close_msg):
# print("########Broadcast_closed########")
# print("Broadcast Connection Closed")
print("Close Message : %s" %(close_msg))
print("Close Message Code : %s" %(close_status_code))
# TradeStatus_connect
def TradeStatus_on_open(ws2):
# print("########TradeStatus_Opened########")
# print("TradeStatus AuthValidate after connection opened")
# Trade Status
Mofsl.Tradelogin()
Mofsl.OrderSubscribe()
Mofsl.TradeSubscribe()
# Mofsl.OrderUnsubscribe()
# Mofsl.TradeUnsubscribe()
# Mofsl.Tradelogout()
def TradeStatus_on_message(ws2, message_type, message):
if message_type == "TradeStatus":
print(message)
def TradeStatus_on_close(ws2, close_status_code, close_msg):
# print("########TradeStatus_closed########")
# print("TradeStatus Connection Closed")
print("Close Message : %s" %(close_msg))
print("Close Message Code : %s" %(close_status_code))
# Assign the callbacks.
Mofsl._Broadcast_on_open = Broadcast_on_open
Mofsl._Broadcast_on_message = Broadcast_on_message
Mofsl._Broadcast_on_close = Broadcast_on_close
Mofsl._TradeStatus_on_open = TradeStatus_on_open
Mofsl._TradeStatus_on_message = TradeStatus_on_message
Mofsl._TradeStatus_on_close = TradeStatus_on_close
# # Connect
# Mofsl.TradeStatus_connect()
# Mofsl.Broadcast_connect()
# --------------------------------------------------------------------------------------------------------
# -----------------------------------------------TCPSocket------------------------------------------------
# --------------------------------------------------------------------------------------------------------
# Broadcast_connect
def TCPBroadcast_on_open():
# print("########TCPBroadcast_Opened########")
# print("AuthValidate after connection opened")
# Exchange -BSE, NSE, NSEFO, MCX, NSECD, NCDEX
# Exchange Type- CASH,DERIVATIVES Scrip Code-eg 532540
Mofsl.TCPRegister("NSE", "CASH", 11536)
Mofsl.TCPRegister("BSE", "CASH", 532540)
Mofsl.TCPRegister("MCX", "DERIVATIVES", 245470)
Mofsl.TCPRegister("NSEFO", "DERIVATIVES",55917)
Mofsl.TCPRegister("NCDEX", "DERIVATIVES",59259)
# Mofsl.TCPUnRegister("BSE", "CASH", 532540)
# Index BSE, NSE
# Mofsl.TCPIndexRegister("NSE")
# Mofsl.TCPIndexRegister("BSE")
# Mofsl.TCPIndexUnregister("NSE")
# Mofsl.TCPIndexUnregister("BSE")
# TCPBroadcast Logout
# Mofsl.TCPBroadcast_Logout()
def TCPBroadcast_on_message(message_type, message):
if message_type == "Index":
print(message)
elif(message_type == "LTP"):
print(message)
elif(message_type == "MarketDepth"):
print(message)
elif(message_type == "DayOHLC"):
print(message)
elif(message_type == "DPR"):
print(message)
elif(message_type == "OpenInterest"):
print(message)
else:
print(message)
pass
# print(message, message_type)
# Assign the callbacks.
Mofsl._TCPBroadcast_on_open = TCPBroadcast_on_open
Mofsl._TCPBroadcast_on_message = TCPBroadcast_on_message
# # Connect
# Mofsl.TCPBroadcast_connect()