-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.log
4370 lines (4041 loc) · 419 KB
/
logger.log
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_01022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_01022021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 01,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,118750,114986,705152,148585,652377,1076475,661655,1053837,340559,120311,213944,166496,3013624,2359503
DII,6801,36877,16409,809060,267,12483,0,0,0,0,631,0,35960,846568
FII,85068,28901,671069,506054,228861,308362,201004,213283,21983,20593,36853,23322,1335936,1009417
Pro,13341,43196,144341,73272,266958,310932,285804,441132,68316,110074,179430,61160,913962,1083994
TOTAL,223960,223960,1536971,1536971,1148463,1708252,1148463,1708252,430858,250978,430858,250978,5299482,5299482
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 118750 114986 ... 213944 166496 2021-02-01
1 DII 6801 36877 ... 631 0 2021-02-01
2 FII 85068 28901 ... 36853 23322 2021-02-01
3 Pro 13341 43196 ... 179430 61160 2021-02-01
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_02022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_02022021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 02,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,108357,107614,709181,146566,816911,1208680,772197,1184366,377994,145185,238334,189250,3366308,2638327
DII,6986,42748,17243,800816,267,9853,0,0,0,65,1159,0,34414,844723
FII,79104,31746,666007,515193,247951,347654,205491,234355,22478,24787,40448,25748,1387981,1052981
Pro,19527,31866,153395,83251,283858,366341,371299,513807,87928,122830,208459,77869,1033879,1286551
TOTAL,213974,213974,1545826,1545826,1348987,1932528,1348987,1932528,488400,292867,488400,292867,5822582,5822582
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 108357 107614 ... 238334 189250 2021-02-02
1 DII 6986 42748 ... 1159 0 2021-02-02
2 FII 79104 31746 ... 40448 25748 2021-02-02
3 Pro 19527 31866 ... 208459 77869 2021-02-02
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_03022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_03022021.csv HTTP/1.1" 200 492
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 03,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,120648,116971,720891,161394,872952,1395878,845808,1308874,413562,167113,263916,205942,3691044,2902905
DII,7025,42429,20786,799255,267,9853,0,0,0,65,1928,0,37996,843612
FII,80958,33784,662651,521137,235318,333980,188350,243687,24738,27156,44632,28571,1364801,1060161
Pro,19767,35214,162610,85152,306344,378345,380723,565495,101182,130716,229006,90537,1098964,1386127
TOTAL,228398,228398,1566938,1566938,1414881,2118056,1414881,2118056,539482,325050,539482,325050,6192805,6192805
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 120648 116971 ... 263916 205942 2021-02-03
1 DII 7025 42429 ... 1928 0 2021-02-03
2 FII 80958 33784 ... 44632 28571 2021-02-03
3 Pro 19767 35214 ... 229006 90537 2021-02-03
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_04022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_04022021.csv HTTP/1.1" 200 490
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 04,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,128925,122745,741456,194818,447516,680863,457343,735419,456548,186334,293022,224735,2641642,2028082
DII,6016,42421,21708,797270,267,9853,0,0,0,155,3178,0,37999,842869
FII,78402,45464,669932,520634,157686,258942,107237,159874,27311,28765,47372,30461,1221038,911042
Pro,25073,27786,170286,90660,152598,200921,193487,255286,112345,142404,252632,102462,803627,922313
TOTAL,238416,238416,1603382,1603382,758067,1150579,758067,1150579,596204,357658,596204,357658,4704306,4704306
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 128925 122745 ... 293022 224735 2021-02-04
1 DII 6016 42421 ... 3178 0 2021-02-04
2 FII 78402 45464 ... 47372 30461 2021-02-04
3 Pro 25073 27786 ... 252632 102462 2021-02-04
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_05022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_05022021.csv HTTP/1.1" 200 486
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 05,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,139545,125162,742216,205134,676170,867045,677679,935347,496703,199907,312279,245879,3121586,2501480
DII,1601,42421,23347,794580,267,9853,0,0,0,216,3649,0,35284,840650
FII,74996,46802,671723,523369,202599,299876,131232,196083,30668,32053,52056,31878,1311915,981420
Pro,24635,26392,181217,95420,236266,298637,306391,343981,118557,156415,277944,110834,1015727,1160962
TOTAL,240777,240777,1618503,1618503,1115302,1475411,1115302,1475411,645928,388591,645928,388591,5484512,5484512
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 139545 125162 ... 312279 245879 2021-02-05
1 DII 1601 42421 ... 3649 0 2021-02-05
2 FII 74996 46802 ... 52056 31878 2021-02-05
3 Pro 24635 26392 ... 277944 110834 2021-02-05
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_06022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_06022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 06022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_07022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_07022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 07022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_08022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_08022021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 08,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,133776,126345,741289,206867,788697,1047328,768681,1092928,526373,215138,338980,254404,3452601,2788205
DII,1277,41228,24207,801552,267,8653,0,0,0,216,4510,0,34620,847290
FII,75167,41959,678344,520269,204156,322860,152768,228746,35333,35277,56284,34472,1351137,1034498
Pro,24327,25015,184442,99594,302626,327035,374297,384202,127885,157657,289817,119412,1123972,1292337
TOTAL,234547,234547,1628282,1628282,1295746,1705876,1295746,1705876,689591,408288,689591,408288,5962330,5962330
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 133776 126345 ... 338980 254404 2021-02-08
1 DII 1277 41228 ... 4510 0 2021-02-08
2 FII 75167 41959 ... 56284 34472 2021-02-08
3 Pro 24327 25015 ... 289817 119412 2021-02-08
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_09022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_09022021.csv HTTP/1.1" 200 485
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 09,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,131584,128190,742302,207144,895762,1106684,859157,1149296,547681,223023,356660,262530,3647036,2962977
DII,881,41228,23895,803008,267,8653,0,0,0,216,4832,0,33912,849068
FII,76392,39707,679701,519076,224727,328958,170864,242248,38267,36900,60686,35987,1384945,1068568
Pro,25769,25501,186301,102971,308993,333933,399728,386684,133327,162615,297097,124237,1150938,1336218
TOTAL,234626,234626,1632199,1632199,1429749,1778228,1429749,1778228,719275,422754,719275,422754,6216831,6216831
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 131584 128190 ... 356660 262530 2021-02-09
1 DII 881 41228 ... 4832 0 2021-02-09
2 FII 76392 39707 ... 60686 35987 2021-02-09
3 Pro 25769 25501 ... 297097 124237 2021-02-09
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_10022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_10022021.csv HTTP/1.1" 200 486
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 10,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,128826,126103,744375,203189,1058146,1160829,991231,1193994,576729,228345,375524,270408,3897250,3160449
DII,868,41812,22704,803690,267,8653,0,0,0,216,4832,0,32708,850334
FII,76454,39075,679198,523492,248732,346224,182868,249764,38847,38372,64096,37267,1427827,1096562
Pro,25539,24697,187248,103154,315380,315388,448426,387336,132010,166673,303134,125931,1142238,1392678
TOTAL,231687,231687,1633525,1633525,1622525,1831094,1622525,1831094,747586,433606,747586,433606,6500023,6500023
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 128826 126103 ... 375524 270408 2021-02-10
1 DII 868 41812 ... 4832 0 2021-02-10
2 FII 76454 39075 ... 64096 37267 2021-02-10
3 Pro 25539 24697 ... 303134 125931 2021-02-10
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_11022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_11022021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 11,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,131402,128577,751539,211139,499202,687045,520622,755610,598735,240180,389853,276989,2908103,2282790
DII,837,42040,21574,800360,267,8653,0,0,0,216,6242,0,31547,848642
FII,78683,40805,685625,529371,186608,287666,122513,192822,41623,40308,67895,39771,1320513,993177
Pro,26496,25996,187948,105816,171288,202625,214230,237557,133517,167915,309885,131859,889789,1025343
TOTAL,237418,237418,1646686,1646686,857365,1185989,857365,1185989,773875,448619,773875,448619,5149952,5149952
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 131402 128577 ... 389853 276989 2021-02-11
1 DII 837 42040 ... 6242 0 2021-02-11
2 FII 78683 40805 ... 67895 39771 2021-02-11
3 Pro 26496 25996 ... 309885 131859 2021-02-11
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_12022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_12022021.csv HTTP/1.1" 200 484
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 12,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,138110,130761,749361,215003,685134,867840,690626,945028,639451,243313,407523,285067,3323209,2674008
DII,823,41735,22313,801610,267,8653,0,0,0,216,6791,0,32272,850136
FII,78688,48156,686329,531784,204442,305364,160363,216548,43176,41058,71743,40131,1359057,1068725
Pro,29161,26130,192527,102133,251219,270873,290073,291154,135478,177959,332048,137348,1057217,1178886
TOTAL,246782,246782,1650530,1650530,1141062,1452730,1141062,1452730,818105,462546,818105,462546,5771755,5771755
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 138110 130761 ... 407523 285067 2021-02-12
1 DII 823 41735 ... 6791 0 2021-02-12
2 FII 78688 48156 ... 71743 40131 2021-02-12
3 Pro 29161 26130 ... 332048 137348 2021-02-12
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_13022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_13022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 13022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_14022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_14022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 14022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_15022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_15022021.csv HTTP/1.1" 200 484
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 15,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,144777,135484,753301,215779,653336,1131748,687350,1149029,631674,252987,411779,288125,3567823,2887546
DII,1223,41735,21848,802974,267,8653,0,0,0,216,7241,0,32207,851950
FII,85467,49484,692847,536580,223471,324917,159325,243777,44851,40527,70898,40180,1412080,1100244
Pro,27270,32034,191409,104072,272748,341428,303147,413940,141590,176926,328197,142351,1151371,1323741
TOTAL,258737,258737,1659405,1659405,1149822,1806746,1149822,1806746,818115,470656,818115,470656,6163481,6163481
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 144777 135484 ... 411779 288125 2021-02-15
1 DII 1223 41735 ... 7241 0 2021-02-15
2 FII 85467 49484 ... 70898 40180 2021-02-15
3 Pro 27270 32034 ... 328197 142351 2021-02-15
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_16022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_16022021.csv HTTP/1.1" 200 490
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 16,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,135945,127493,755814,203757,925199,1070330,890240,1149399,644024,246496,422822,289578,3777808,3083289
DII,1215,41687,21883,809643,267,8653,0,0,0,216,7246,0,32234,858576
FII,80442,50451,689246,537081,263802,358818,193421,251183,45602,42305,73078,39593,1480215,1144807
Pro,29737,27708,190708,107170,318304,325784,423911,363003,138294,177693,324774,137539,1180520,1384105
TOTAL,247339,247339,1657651,1657651,1507572,1763585,1507572,1763585,827920,466710,827920,466710,6470777,6470777
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 135945 127493 ... 422822 289578 2021-02-16
1 DII 1215 41687 ... 7246 0 2021-02-16
2 FII 80442 50451 ... 73078 39593 2021-02-16
3 Pro 29737 27708 ... 324774 137539 2021-02-16
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_17022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_17022021.csv HTTP/1.1" 200 493
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 17,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,139064,129754,762068,205055,1100902,1123376,1012515,1199293,660706,246070,430031,291483,4032186,3268131
DII,1217,41655,22753,811645,267,9487,0,0,0,216,7251,0,33940,860551
FII,74848,45841,689605,540905,273674,365159,210618,248916,46320,42587,74890,39874,1492193,1161044
Pro,30047,27926,193676,110497,323938,345837,475648,395650,137491,180185,332345,137701,1211174,1479767
TOTAL,245176,245176,1668102,1668102,1698781,1843859,1698781,1843859,844517,469058,844517,469058,6769493,6769493
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 139064 129754 ... 430031 291483 2021-02-17
1 DII 1217 41655 ... 7251 0 2021-02-17
2 FII 74848 45841 ... 74890 39874 2021-02-17
3 Pro 30047 27926 ... 332345 137701 2021-02-17
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_18022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_18022021.csv HTTP/1.1" 200 492
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 18,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,137904,128906,770709,207986,606189,672976,593924,769517,673014,237780,434072,289935,3098572,2424340
DII,1609,43338,23204,811990,1467,9487,0,0,0,216,7256,0,35983,862584
FII,78261,50276,685721,548900,181053,292102,114207,188638,48407,43740,77608,39327,1329284,1018956
Pro,30353,25607,198966,109724,194018,206179,274596,222589,138838,186067,341323,138541,954421,1112380
TOTAL,248127,248127,1678600,1678600,982727,1180744,982727,1180744,860259,467803,860259,467803,5418260,5418260
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 137904 128906 ... 434072 289935 2021-02-18
1 DII 1609 43338 ... 7256 0 2021-02-18
2 FII 78261 50276 ... 77608 39327 2021-02-18
3 Pro 30353 25607 ... 341323 138541 2021-02-18
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_19022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_19022021.csv HTTP/1.1" 200 493
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 19,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,131739,123660,760684,196167,872199,760978,830694,888467,648938,217558,422170,276043,3392096,2737201
DII,1613,45377,23074,811064,267,10112,0,0,0,216,7256,0,35282,863697
FII,78525,50293,687087,546261,228722,345213,149971,218413,48348,42911,76180,37742,1430806,1078860
Pro,35779,28326,200898,118251,235206,255022,355729,264445,143112,184338,334792,131238,1054355,1232781
TOTAL,247656,247656,1671743,1671743,1336394,1371325,1336394,1371325,840398,445023,840398,445023,5912539,5912539
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 131739 123660 ... 422170 276043 2021-02-19
1 DII 1613 45377 ... 7256 0 2021-02-19
2 FII 78525 50293 ... 76180 37742 2021-02-19
3 Pro 35779 28326 ... 334792 131238 2021-02-19
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_20022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_20022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 20022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_21022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_21022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 21022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_22022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_22022021.csv HTTP/1.1" 200 491
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 22,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,127052,117813,758833,193556,1125281,793586,1035997,927746,655650,206322,420241,267262,3666724,2962615
DII,887,46035,21766,814209,267,12914,0,0,0,216,7256,0,36050,867500
FII,84155,46829,696595,556047,259876,382119,168619,229090,43928,44930,72334,38118,1511603,1111037
Pro,28193,29610,209275,122657,278236,259619,459044,291402,145510,184403,345257,130491,1105236,1378461
TOTAL,240287,240287,1686469,1686469,1663660,1448238,1663660,1448238,845088,435871,845088,435871,6319613,6319613
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 127052 117813 ... 420241 267262 2021-02-22
1 DII 887 46035 ... 7256 0 2021-02-22
2 FII 84155 46829 ... 72334 38118 2021-02-22
3 Pro 28193 29610 ... 345257 130491 2021-02-22
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_23022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_23022021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 23,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,130732,115347,759804,189124,1164903,904192,1092205,1034106,613051,209478,405121,265232,3782160,3101135
DII,835,46023,22051,820780,267,13015,0,0,0,216,7251,0,36384,874054
FII,84354,48536,701992,558187,292389,403039,186220,244207,43082,45825,63030,39698,1570681,1139878
Pro,26116,32131,202760,118516,293051,277325,472185,319258,145097,182696,325828,133285,1127045,1401203
TOTAL,242037,242037,1686607,1686607,1750610,1597571,1750610,1597571,801230,438215,801230,438215,6516270,6516270
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 130732 115347 ... 405121 265232 2021-02-23
1 DII 835 46023 ... 7251 0 2021-02-23
2 FII 84354 48536 ... 63030 39698 2021-02-23
3 Pro 26116 32131 ... 325828 133285 2021-02-23
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_24022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_24022021.csv HTTP/1.1" 200 489
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 24,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,123348,116375,761154,172865,880004,1168557,898974,1196827,526609,195806,361548,251503,3655478,2998092
DII,851,46145,23471,825438,267,13415,0,0,0,216,7371,0,38220,878954
FII,92727,51994,693003,551753,292526,408243,178728,271985,40218,43891,57681,38462,1570608,1150603
Pro,32155,34567,193492,121064,279173,285820,374268,407223,151270,181452,291497,131400,1123362,1360019
TOTAL,249081,249081,1671120,1671120,1451970,1876035,1451970,1876035,718097,421365,718097,421365,6387668,6387668
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 123348 116375 ... 361548 251503 2021-02-24
1 DII 851 46145 ... 7371 0 2021-02-24
2 FII 92727 51994 ... 57681 38462 2021-02-24
3 Pro 32155 34567 ... 291497 131400 2021-02-24
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_25022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_25022021.csv HTTP/1.1" 200 480
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 25,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,84957,103671,727312,122925,509646,523451,495953,632728,272949,81232,167745,136876,2199547,1659898
DII,851,42437,20413,809360,267,10857,0,0,0,0,685,0,32388,852482
FII,93004,28923,622674,523841,125720,222356,83234,105203,12884,15774,20951,15569,1092412,777721
Pro,16930,20711,150224,64497,146804,163806,203250,182539,51832,94409,148284,38970,624005,658251
TOTAL,195742,195742,1520623,1520623,782437,920470,782437,920470,337665,191415,337665,191415,3948352,3948352
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 84957 103671 ... 167745 136876 2021-02-25
1 DII 851 42437 ... 685 0 2021-02-25
2 FII 93004 28923 ... 20951 15569 2021-02-25
3 Pro 16930 20711 ... 148284 38970 2021-02-25
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_26022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_26022021.csv HTTP/1.1" 200 484
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Feb 26,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,133765,123838,757077,147676,967922,593856,870424,754000,381611,101583,213954,182654,2935814,2292546
DII,513,33571,21402,822726,267,12740,0,0,0,0,6132,0,34922,862429
FII,83407,54196,640623,545394,182622,284030,142738,134394,21199,22822,32177,22608,1234703,931507
Pro,22921,29001,172661,75967,272381,237683,410030,239915,60056,131035,210603,50178,896737,1015694
TOTAL,240606,240606,1591763,1591763,1423192,1128309,1423192,1128309,462866,255440,462866,255440,5102176,5102176
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 133765 123838 ... 213954 182654 2021-02-26
1 DII 513 33571 ... 6132 0 2021-02-26
2 FII 83407 54196 ... 32177 22608 2021-02-26
3 Pro 22921 29001 ... 210603 50178 2021-02-26
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_27022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_27022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 27022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_28022021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_28022021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 28022021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_01032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_01032021.csv HTTP/1.1" 200 482
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 01,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,126331,133088,750893,149883,1022372,790647,964795,919882,413946,117858,248311,196448,3222047,2612407
DII,584,34291,23298,827409,267,12740,0,0,0,0,7394,0,36889,869094
FII,82434,40107,645420,540143,198308,291494,147444,157139,24749,24771,33407,24273,1267176,942513
Pro,27321,29184,176263,78439,310605,292811,419313,310671,70472,136958,220055,58866,1014430,1116528
TOTAL,236670,236670,1595874,1595874,1531552,1387692,1531552,1387692,509167,279587,509167,279587,5540542,5540542
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 126331 133088 ... 248311 196448 2021-03-01
1 DII 584 34291 ... 7394 0 2021-03-01
2 FII 82434 40107 ... 33407 24273 2021-03-01
3 Pro 27321 29184 ... 220055 58866 2021-03-01
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_02032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_02032021.csv HTTP/1.1" 200 485
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 02,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,144607,131637,756018,173179,1057699,941245,1026153,1043753,427272,129405,267172,207051,3456246,2848945
DII,582,33410,26637,831138,267,11060,0,0,0,0,8798,0,38546,873346
FII,76501,52118,651631,529038,200012,300643,148787,182004,27384,27376,35265,26314,1283547,973526
Pro,26411,30936,181188,82119,348929,336578,431967,363769,79391,141179,222812,64595,1113676,1196198
TOTAL,248101,248101,1615474,1615474,1606907,1589526,1606907,1589526,534047,297960,534047,297960,5892015,5892015
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 144607 131637 ... 267172 207051 2021-03-02
1 DII 582 33410 ... 8798 0 2021-03-02
2 FII 76501 52118 ... 35265 26314 2021-03-02
3 Pro 26411 30936 ... 222812 64595 2021-03-02
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_03032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_03032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 03,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,149089,140421,755497,175059,958073,1262901,970701,1265255,420405,147068,278240,214113,3693033,3043789
DII,582,35730,28474,828959,267,11885,0,0,0,0,10197,0,41208,874886
FII,80262,42902,649914,518673,242539,355072,175087,233157,31710,30558,37451,29227,1390055,1036497
Pro,20524,31404,175905,87099,340319,360474,395410,491920,94192,140117,220419,74403,1131531,1300655
TOTAL,250457,250457,1609790,1609790,1541198,1990332,1541198,1990332,546307,317743,546307,317743,6255827,6255827
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 149089 140421 ... 278240 214113 2021-03-03
1 DII 582 35730 ... 10197 0 2021-03-03
2 FII 80262 42902 ... 37451 29227 2021-03-03
3 Pro 20524 31404 ... 220419 74403 2021-03-03
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_04032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_04032021.csv HTTP/1.1" 200 484
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 04,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,189833,145896,778272,205626,554472,586554,554673,701249,481444,149968,304042,228133,2740543,2139619
DII,579,44669,29033,820270,267,11885,0,0,0,0,12099,0,41764,877038
FII,76465,59600,642828,525731,161940,282217,109077,144952,33746,32435,41895,30165,1229631,911420
Pro,21854,38566,187559,86065,169956,191706,222885,226161,94461,153515,251615,77620,819051,902912
TOTAL,288731,288731,1637692,1637692,886635,1072362,886635,1072362,609651,335918,609651,335918,4830989,4830989
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 189833 145896 ... 304042 228133 2021-03-04
1 DII 579 44669 ... 12099 0 2021-03-04
2 FII 76465 59600 ... 41895 30165 2021-03-04
3 Pro 21854 38566 ... 251615 77620 2021-03-04
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_05032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_05032021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 05,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,197608,159787,766447,217158,928189,754703,893141,908575,546261,150127,330611,242099,3343335,2751371
DII,579,43788,29110,814545,267,11710,0,0,0,0,12619,0,41666,870952
FII,81532,63472,644246,523552,197977,311234,152684,165045,35662,33937,45777,31282,1304588,981812
Pro,22805,35477,196702,81250,284833,279363,365441,283390,95433,168898,288349,79581,1048034,1133488
TOTAL,302524,302524,1636505,1636505,1411266,1357010,1411266,1357010,677356,352962,677356,352962,5737623,5737623
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 197608 159787 ... 330611 242099 2021-03-05
1 DII 579 43788 ... 12619 0 2021-03-05
2 FII 81532 63472 ... 45777 31282 2021-03-05
3 Pro 22805 35477 ... 288349 79581 2021-03-05
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_06032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_06032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 06032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_07032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_07032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 07032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_08032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_08032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 08,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,200411,160226,773989,221816,1190991,915209,1107915,1080765,571357,158835,352372,249922,3810792,3173016
DII,598,45288,31518,818441,267,13210,0,0,0,0,13271,0,45593,877000
FII,78013,67065,645484,523920,215155,330985,166507,185548,36673,34968,47953,31811,1341278,1022804
Pro,28212,34655,197379,84193,348136,351329,480127,344420,100079,171119,294513,83189,1196254,1321097
TOTAL,307234,307234,1648370,1648370,1754549,1610733,1754549,1610733,708109,364922,708109,364922,6393917,6393917
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 200411 160226 ... 352372 249922 2021-03-08
1 DII 598 45288 ... 13271 0 2021-03-08
2 FII 78013 67065 ... 47953 31811 2021-03-08
3 Pro 28212 34655 ... 294513 83189 2021-03-08
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_09032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_09032021.csv HTTP/1.1" 200 489
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 09,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,190919,156939,777248,205209,1136590,1059946,1095979,1164073,587200,163896,365363,256184,3915799,3243747
DII,613,48187,29574,822299,267,13210,0,0,0,0,12868,0,43664,883354
FII,80477,52939,644524,540073,267985,344518,192936,189728,37529,35599,48883,33111,1410632,1057670
Pro,22000,35944,202509,86274,325041,338043,440968,401916,104164,177088,301779,87288,1168845,1354169
TOTAL,294009,294009,1653855,1653855,1729883,1755717,1729883,1755717,728893,376583,728893,376583,6538940,6538940
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 190919 156939 ... 365363 256184 2021-03-09
1 DII 613 48187 ... 12868 0 2021-03-09
2 FII 80477 52939 ... 48883 33111 2021-03-09
3 Pro 22000 35944 ... 301779 87288 2021-03-09
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_10032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_10032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 10,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,189299,158133,781066,197634,571786,624780,605171,751190,600875,173943,375771,259006,2941749,2346905
DII,635,51037,29233,823484,267,13210,0,0,0,0,12768,0,43345,887289
FII,78999,50842,636446,537606,183937,294820,109073,155441,38967,36354,50463,33944,1269523,937369
Pro,21959,30880,200412,88433,177481,222964,219227,249143,106564,173239,307404,90586,902619,985673
TOTAL,290892,290892,1647157,1647157,933471,1155774,933471,1155774,746406,383536,746406,383536,5157236,5157236
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 189299 158133 ... 375771 259006 2021-03-10
1 DII 635 51037 ... 12768 0 2021-03-10
2 FII 78999 50842 ... 50463 33944 2021-03-10
3 Pro 21959 30880 ... 307404 90586 2021-03-10
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_11032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_11032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 11032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_12032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_12032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 12,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,201281,173602,783092,194031,1047328,742770,988924,940857,635673,172011,395753,267343,3582155,2960510
DII,690,49740,30893,819826,267,13210,0,0,0,0,12769,0,45060,882335
FII,74680,52704,623680,541140,251401,356231,193935,184890,37911,37183,51417,33860,1381086,1057946
Pro,33555,34160,202992,85660,299652,311322,415789,297786,105437,183992,319082,91983,1136950,1244460
TOTAL,310206,310206,1640657,1640657,1598648,1423533,1598648,1423533,779021,393186,779021,393186,6145251,6145251
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 201281 173602 ... 395753 267343 2021-03-12
1 DII 690 49740 ... 12769 0 2021-03-12
2 FII 74680 52704 ... 51417 33860 2021-03-12
3 Pro 33555 34160 ... 319082 91983 2021-03-12
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_13032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_13032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 13032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_14032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_14032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 14032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_15032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_15032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 15,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,201593,162953,790942,185343,1200314,801430,1110871,994541,653512,171950,405957,264113,3819741,3123778
DII,690,44793,31178,824147,267,13304,0,0,0,0,12924,0,45439,881864
FII,72307,55522,615636,541213,282308,372624,219963,181260,38431,37973,52556,35765,1419279,1086279
Pro,26402,37724,199746,86799,310605,318525,462660,330082,102041,183242,322547,93287,1140561,1333099
TOTAL,300992,300992,1637502,1637502,1793494,1505883,1793494,1505883,793984,393165,793984,393165,6425020,6425020
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 201593 162953 ... 405957 264113 2021-03-15
1 DII 690 44793 ... 12924 0 2021-03-15
2 FII 72307 55522 ... 52556 35765 2021-03-15
3 Pro 26402 37724 ... 322547 93287 2021-03-15
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_16032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_16032021.csv HTTP/1.1" 200 491
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 16,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,197172,168662,790294,181365,1348879,857249,1229774,1042626,660481,179282,413837,263665,4033357,3299929
DII,696,44829,32332,827539,267,13288,0,0,0,0,13772,0,46583,886140
FII,73696,54693,615262,537071,290862,373778,225424,189986,39754,38196,55596,36680,1431548,1099450
Pro,28363,31743,194456,86369,348794,313263,533604,324966,102920,179192,319950,96325,1166988,1392957
TOTAL,299927,299927,1632344,1632344,1988802,1557578,1988802,1557578,803155,396670,803155,396670,6678476,6678476
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 197172 168662 ... 413837 263665 2021-03-16
1 DII 696 44829 ... 13772 0 2021-03-16
2 FII 73696 54693 ... 55596 36680 2021-03-16
3 Pro 28363 31743 ... 319950 96325 2021-03-16
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_17032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_17032021.csv HTTP/1.1" 200 485
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 17,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,196533,170128,783958,165296,1465328,823779,1306745,1029525,674318,169298,415932,261530,4113214,3349156
DII,696,37529,32138,834256,267,14888,0,0,0,0,12899,0,47989,884684
FII,75277,56673,611496,533810,311342,374198,248097,180485,37221,37249,56790,35979,1446783,1111834
Pro,23692,31868,192857,87087,353864,322279,575959,325134,99890,182939,325808,91977,1175521,1437833
TOTAL,296198,296198,1620449,1620449,2130801,1535144,2130801,1535144,811429,389486,811429,389486,6783507,6783507
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 196533 170128 ... 415932 261530 2021-03-17
1 DII 696 37529 ... 12899 0 2021-03-17
2 FII 75277 56673 ... 56790 35979 2021-03-17
3 Pro 23692 31868 ... 325808 91977 2021-03-17
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_18032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_18032021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 18,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,194924,175505,765121,151029,720606,559162,691903,742179,654865,156250,399909,252933,3050928,2413458
DII,696,36498,32466,834713,267,13178,0,0,0,0,13055,0,46607,884266
FII,77376,56039,614844,529211,183269,314216,127261,141300,38729,36594,56979,35165,1265028,945955
Pro,28591,33545,190210,87688,198230,212318,283208,215395,100397,182645,324048,87391,912391,1031275
TOTAL,301587,301587,1602641,1602641,1102372,1098874,1102372,1098874,793991,375489,793991,375489,5274954,5274954
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 194924 175505 ... 399909 252933 2021-03-18
1 DII 696 36498 ... 13055 0 2021-03-18
2 FII 77376 56039 ... 56979 35165 2021-03-18
3 Pro 28591 33545 ... 324048 87391 2021-03-18
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_19032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_19032021.csv HTTP/1.1" 200 489
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 19,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,192430,171145,750667,154863,792197,791634,822740,926949,603726,172775,379398,246258,3303429,2701353
DII,674,36660,30459,833615,267,13178,0,0,0,0,13459,0,44578,883734
FII,79209,45492,628942,519651,227126,358253,159829,187643,40401,37552,56100,37090,1371483,1005805
Pro,24639,43655,184919,86858,290107,248544,327128,297017,107376,168110,302546,95089,1023695,1152293
TOTAL,296952,296952,1594987,1594987,1309697,1411609,1309697,1411609,751503,378437,751503,378437,5743185,5743185
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 192430 171145 ... 379398 246258 2021-03-19
1 DII 674 36660 ... 13459 0 2021-03-19
2 FII 79209 45492 ... 56100 37090 2021-03-19
3 Pro 24639 43655 ... 302546 95089 2021-03-19
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_20032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_20032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 20032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_21032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_21032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 21032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_22032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_22032021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 22,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,203150,170772,752560,156796,1044801,884304,1029217,1026173,607783,177615,378924,246194,3670213,3008076
DII,674,39214,30414,837745,267,13178,0,0,0,0,13467,0,44533,890426
FII,82180,49345,626522,513813,260861,386292,195226,200402,38060,36695,54793,33073,1430610,1046652
Pro,25354,52027,189722,90864,323197,275257,404683,332456,112607,165157,311266,100200,1091294,1291496
TOTAL,311358,311358,1599218,1599218,1629126,1559031,1629126,1559031,758450,379467,758450,379467,6236650,6236650
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 203150 170772 ... 378924 246194 2021-03-22
1 DII 674 39214 ... 13467 0 2021-03-22
2 FII 82180 49345 ... 54793 33073 2021-03-22
3 Pro 25354 52027 ... 311266 100200 2021-03-22
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_23032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_23032021.csv HTTP/1.1" 200 490
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 23,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,199305,162629,749603,147241,961643,1031713,990123,1134253,566488,177630,362454,239448,3686382,3036148
DII,674,39188,29968,840229,267,13178,0,0,0,0,13464,0,44087,892881
FII,83255,44651,618290,504555,278462,404694,206871,220225,37606,35685,53264,33149,1457992,1062715
Pro,23188,59954,184230,90066,331373,318241,374751,413348,111748,159468,286660,100186,1128248,1324965
TOTAL,306422,306422,1582091,1582091,1571745,1767826,1571745,1767826,715842,372783,715842,372783,6316709,6316709
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 199305 162629 ... 362454 239448 2021-03-23
1 DII 674 39188 ... 13464 0 2021-03-23
2 FII 83255 44651 ... 53264 33149 2021-03-23
3 Pro 23188 59954 ... 286660 100186 2021-03-23
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_24032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_24032021.csv HTTP/1.1" 200 487
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 24,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,199231,168438,747561,141223,1301095,917180,1188853,1084340,519829,155103,329301,234155,3839999,3146310
DII,676,33999,29186,840640,267,10264,0,0,0,0,13457,0,40393,888096
FII,80977,59068,603776,497375,299327,420519,224977,211495,33144,33659,47429,31915,1471402,1072259
Pro,22904,42283,183716,85001,356434,306450,543293,358578,111829,170504,274615,93196,1151837,1396966
TOTAL,303788,303788,1564239,1564239,1957123,1654413,1957123,1654413,664802,359266,664802,359266,6503631,6503631
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 199231 168438 ... 329301 234155 2021-03-24
1 DII 676 33999 ... 13457 0 2021-03-24
2 FII 80977 59068 ... 47429 31915 2021-03-24
3 Pro 22904 42283 ... 274615 93196 2021-03-24
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_25032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_25032021.csv HTTP/1.1" 200 479
DEBUG:root:****************************************************************************************************
DEBUG:root:"Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 25,2021",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,161408,156419,709781,98599,528460,450890,524076,599861,215924,77818,125886,147952,2144281,1652793
DII,693,26145,19630,844331,267,7175,0,0,0,0,0,0,27765,870476
FII,66707,40121,587212,454657,137141,243188,91442,110103,10764,15331,16595,13861,1060343,726779
Pro,20739,26862,143101,62137,176729,172980,227079,164269,42960,102967,127167,34303,659476,641817
TOTAL,249547,249547,1459724,1459724,842597,874233,842597,874233,269648,196116,269648,196116,3891865,3891865
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 161408 156419 ... 125886 147952 2021-03-25
1 DII 693 26145 ... 0 0 2021-03-25
2 FII 66707 40121 ... 16595 13861 2021-03-25
3 Pro 20739 26862 ... 127167 34303 2021-03-25
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_26032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_26032021.csv HTTP/1.1" 200 482
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 26,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,155361,164029,718970,103431,703825,687280,741328,821640,258349,96387,157911,159670,2620172,2148009
DII,1358,28158,19992,858692,267,7175,0,0,0,11,928,0,28803,887778
FII,78756,32735,594845,459431,178765,269995,125111,150734,18275,20824,25361,22138,1161460,815510
Pro,21659,32212,150272,62525,291430,263875,307848,255951,60369,110417,152793,45831,898022,857160
TOTAL,257134,257134,1484079,1484079,1174287,1228325,1174287,1228325,336993,227639,336993,227639,4708457,4708457
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 155361 164029 ... 157911 159670 2021-03-26
1 DII 1358 28158 ... 928 0 2021-03-26
2 FII 78756 32735 ... 25361 22138 2021-03-26
3 Pro 21659 32212 ... 152793 45831 2021-03-26
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_27032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_27032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 27032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_28032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_28032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 28032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_29032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_29032021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 29032021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_30032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_30032021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 30,"2021""""",,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,"Future Stock Short ",Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,"Total Long Contracts ",Total Short Contracts
Client,161302,178558,714053,111116,784942,964162,829120,1029659,273640,108798,177250,164419,3006897,2490122
DII,1398,27913,20996,870644,267,7175,0,0,0,11,2273,0,29847,900830
FII,81529,25261,618491,457393,184368,270355,123556,173869,21168,23960,28312,23153,1199871,831544
Pro,20051,32548,152067,66454,347825,347754,364726,385918,70735,107101,157708,52298,1045533,1059652
TOTAL,264280,264280,1505607,1505607,1317402,1589446,1317402,1589446,365543,239870,365543,239870,5282148,5282148
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 161302 178558 ... 177250 164419 2021-03-30
1 DII 1398 27913 ... 2273 0 2021-03-30
2 FII 81529 25261 ... 28312 23153 2021-03-30
3 Pro 20051 32548 ... 157708 52298 2021-03-30
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_31032021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_31032021.csv HTTP/1.1" 200 489
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Mar 31,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,198840,195719,830764,202386,1165789,1029444,1107702,1172812,326394,127325,212396,188108,3678556,3079123
DII,1358,26300,20104,863107,267,7362,0,0,0,11,2297,0,29102,891704
FII,72869,49295,599613,472317,258256,336493,214035,181765,21974,25241,30621,25475,1314446,973508
Pro,26669,28422,156774,69445,349986,362662,452561,381384,71660,117096,174714,56090,1084847,1162616
TOTAL,299736,299736,1607255,1607255,1774298,1735961,1774298,1735961,420028,269673,420028,269673,6106951,6106951
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 198840 195719 ... 212396 188108 2021-03-31
1 DII 1358 26300 ... 2297 0 2021-03-31
2 FII 72869 49295 ... 30621 25475 2021-03-31
3 Pro 26669 28422 ... 174714 56090 2021-03-31
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_01042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_01042021.csv HTTP/1.1" 200 484
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Apr 01,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,162551,156787,849644,204325,473188,547437,517438,682978,343238,141126,227513,192948,2517184,1981989
DII,1358,26330,20195,868475,267,7362,0,0,0,11,13418,0,29193,908223
FII,72655,44544,597049,475495,157004,251597,102163,119736,25602,28102,34749,28095,1132009,804782
Pro,16950,25853,155274,73867,177626,173623,188484,177305,83704,116117,176864,64313,723294,706686
TOTAL,253514,253514,1622162,1622162,808085,980019,808085,980019,452544,285356,452544,285356,4401680,4401680
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 162551 156787 ... 227513 192948 2021-04-01
1 DII 1358 26330 ... 13418 0 2021-04-01
2 FII 72655 44544 ... 34749 28095 2021-04-01
3 Pro 16950 25853 ... 176864 64313 2021-04-01
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_02042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_02042021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 02042021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_03042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_03042021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 03042021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_04042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_04042021.csv HTTP/1.1" 302 0
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): www.nseindia.com:443
WARNING:root:Response not present for 04042021
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_05042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_05042021.csv HTTP/1.1" 200 483
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Apr 05,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,162145,151522,860717,211823,948528,707289,902683,859733,395962,144208,248152,211363,3218849,2585276
DII,688,22461,19411,859633,267,7362,0,0,0,9,17105,0,27737,899199
FII,65907,55237,589714,492272,207884,286204,162853,146506,28651,30665,37817,30248,1209025,924933
Pro,19862,19382,163113,69227,289975,250300,381118,244916,81120,131175,202659,64446,935545,981748
TOTAL,248602,248602,1632955,1632955,1446654,1251155,1446654,1251155,505733,306057,505733,306057,5391156,5391156
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 162145 151522 ... 248152 211363 2021-04-05
1 DII 688 22461 ... 17105 0 2021-04-05
2 FII 65907 55237 ... 37817 30248 2021-04-05
3 Pro 19862 19382 ... 202659 64446 2021-04-05
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_06042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_06042021.csv HTTP/1.1" 200 489
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Apr 06,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,157446,143994,872895,218838,1071525,857342,1018182,1003216,422890,159736,270833,224122,3541834,2879185
DII,688,23170,18803,863339,267,7362,0,0,0,9,17548,0,27129,904057
FII,65940,52397,586829,489983,246860,318301,185316,171201,30837,32034,39955,31126,1280801,969978
Pro,16407,20920,167671,74038,333177,302480,448331,311068,87133,134710,212524,71241,1041578,1138122
TOTAL,240481,240481,1646198,1646198,1651829,1485485,1651829,1485485,540860,326489,540860,326489,5891342,5891342
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 157446 143994 ... 270833 224122 2021-04-06
1 DII 688 23170 ... 17548 0 2021-04-06
2 FII 65940 52397 ... 39955 31126 2021-04-06
3 Pro 16407 20920 ... 212524 71241 2021-04-06
[4 rows x 14 columns]
DEBUG:root:****************************************************************************************************
DEBUG:root:URL path : https://archives.nseindia.com/content/nsccl/fao_participant_oi_07042021.csv
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): archives.nseindia.com:443
DEBUG:urllib3.connectionpool:https://archives.nseindia.com:443 "GET /content/nsccl/fao_participant_oi_07042021.csv HTTP/1.1" 200 488
DEBUG:root:****************************************************************************************************
DEBUG:root:""Participant wise Open Interest (no. of contracts) in Equity Derivatives as on Apr 07,2021"",,,,,,,,,,,,,,
Client Type,Future Index Long,Future Index Short,Future Stock Long,Future Stock Short ,Option Index Call Long,Option Index Put Long,Option Index Call Short,Option Index Put Short,Option Stock Call Long,Option Stock Put Long,Option Stock Call Short,Option Stock Put Short,Total Long Contracts ,Total Short Contracts
Client,160074,145057,872360,219122,1049557,1171413,1039917,1218952,432269,169528,284542,227115,3855201,3134705
DII,688,26955,20066,864724,267,7175,0,0,0,9,22120,0,28205,913799
FII,61990,42114,589303,483519,248694,325920,179891,193762,33885,33395,43074,32979,1293187,975339
Pro,15326,23952,163405,77769,352500,383843,431210,475637,95727,133335,212145,76173,1144136,1296886
TOTAL,238078,238078,1645134,1645134,1651018,1888351,1651018,1888351,561881,336267,561881,336267,6320729,6320729
INFO:root: Client Type Future Index Long Future Index Short ... Option Stock Call Short Option Stock Put Short Date
0 Client 160074 145057 ... 284542 227115 2021-04-07
1 DII 688 26955 ... 22120 0 2021-04-07