├── Downloads
└── .gitignore
├── LICENSE
├── README.md
├── SAK.log
├── SAKModules
├── .gitignore
├── ALPACA_Connect.py
├── IBKR_Allinone.py
├── IBKR_Connect_Window.py
├── IBKR_Historical_Window.py
├── IBKR_Tick_Data_Window.py
├── MySQL_Allinone.py
├── SAK_NSEOptionChainExtractor.py
├── UPSTOX_Connect_Window.py
└── help.txt
├── SAK_Transparent.ico
├── SwissAlgoKnife.py
└── secret
├── .gitignore
└── cred.py
/Downloads/.gitignore:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SwissAlgoKnife
2 | Utilities to automate small daily tasks for algo traders.
3 |
4 | ~~WARNING: Based on https://github.com/PySimpleGUI/, these are one shot windows. Plan your workflow, or be prepared to open and close the application in entirety since a window once closed cannot be opened again. As soon as there's a solution for this, this warning will be removed.~~ Latest change made to SwissAlgoKnife.py (2019-12-29) allow windows to opened and close multiple times. The change was to use read-execute on the files contained in SAKModules directory, rather than importing them at the click of a button. This also allows new modules to be added to the project without any changes needed in the front end.
5 |
6 | **Project Structure:**
7 |
8 | SwissAlgoKnife
9 | |-SwissAlgoKnife.py
10 | |-SAKModules
11 | |-IBKRAllinone.py
12 | |-MySQL_Allinone.py
13 | |-IBKR_Connect_Window.py
14 | |-IBKR_Historical_Window.py
15 | |-IBKR_Tick_Data_Window.py
16 | |-ALPACA_Connect.py
17 | |-UPSTOX_Connect_Window.py
18 | |-SAK_NSEOptionChainExtractor.py
19 | |-__pycache__
20 | |-Secret
21 | |-Cred.py
22 | |-Downloads
23 | |-
24 | |-__pycache__
25 |
26 | **Description of files**
27 |
28 | - SwissAlgoKnife.py - just an entry point to the application.
29 | - SAKModules - Folder containing all utilities. Each utility is designed to also be a standalone file.
30 | - IBKRAllinone.py - All IBKR functions in one file: Connect, get OHLC Data, get Tick Data
31 | - MySQL_Allinone.py - All MySQL functions in one file: Connect, store OHLC Data, store Tick Data. (TODO: (1) Retrieval function WIP, (2) store Option Chain Data.)
32 | - IBKR_Connect_Window.py - older window. To connect to IBKR.
33 | - IBKR_Historical_Window.py - older window. To get OHLC Data.
34 | - IBKR_Tick_Data_Window.py - older window. To get tick Data.
35 | - SAK_NSEOptionChainExtractor.py - crawls and collects data from NSE Options Chain pages. Creates a separate CSV file for each symbol. Will keep appending to CSV if file isn't removed from directory. (TODO: (1) Subdivide Downloads directory into different folders for different types of downloaded data, (2) pick up list_identifiers from a file instead of hardcoded values.)
36 | - ALPACA_Connect.py - WIP.
37 | - SAK_Zerodha.py - coming sooner.
38 | - SAK_Fyers.py - coming later.
39 | - UPSTOX_Connect_Window.py - frozen due to Upstox discontinuing API.
40 | - __pycache__ - don't touch.
41 | - Secret - folder for credential files
42 | - Cred.py - file containing credentials for all APIs in one place.
43 | - Downloads - folder for all downloaded files across utilities.
44 | - __pycache__ - don't touch.
45 |
46 | **Interactive Brokers Utilities**
47 |
48 | Written with https://github.com/erdewit/ib_insync.
49 |
50 | - Connect to TWS or Gateway on localhost:port:UID
51 | - View and download OHLC data for one symbol, one request at a time
52 | - Download Tick data for one symbol, between any two start and end dates
53 |
54 | **MySQL Utilities**
55 |
56 | Written using SQLAlchemy.
57 |
58 | - Connect to local MySQL server
59 | - Commit OHLC and Tick data files to respective tables
60 |
61 | **Upstox Utilities**
62 |
63 | _Frozen due to unavailability of Upstox Historical API_
64 |
65 | **Zerodha Utilities**
66 |
67 | _WIP_
68 |
69 | **Fyers Utilities**
70 |
71 | _WIP_
72 |
73 | **HDF5 Utilities**
74 |
75 | _Planning_
76 |
--------------------------------------------------------------------------------
/SAK.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algonitish/SwissAlgoKnife/0df5dba744a19ac689e5492e1353d51271d65c96/SAK.log
--------------------------------------------------------------------------------
/SAKModules/.gitignore:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/SAKModules/ALPACA_Connect.py:
--------------------------------------------------------------------------------
1 | import alpaca_trade_api as tradeapi
2 | import time
3 | from secret import cred
4 |
5 | api = tradeapi.REST(cred.APCA_API_KEY_ID, cred.APCA_API_SECRET_KEY, cred.APCA_API_BASE_URL) # or use ENV Vars shown below
6 | account = api.get_account()
7 | api.list_positions()
8 |
9 | # Check if the market is open now.
10 | clock = api.get_clock()
11 | print('The market is {}'.format('open.' if clock.is_open else 'closed.'))
12 |
13 | # Check when the market was open on Dec. 1, 2018
14 | date = '2019-11-03'
15 | calendar = api.get_calendar(start=date, end=date)[0]
16 | print('The market opened at {} and closed at {} on {}.'.format(
17 | calendar.open,
18 | calendar.close,
19 | date
20 | ))
21 |
22 | # Get daily price data for AAPL over the last 5 trading days.
23 | barset = api.get_barset('AAPL', 'day', limit=5)
24 | aapl_bars = barset['AAPL']
25 |
26 | # See how much AAPL moved in that timeframe.
27 | week_open = aapl_bars[0].o
28 | week_close = aapl_bars[-1].c
29 | percent_change = (week_close - week_open) / week_open * 100
30 | print('AAPL moved {}% over the last 5 days'.format(percent_change))
31 |
32 | # Submit a market order to buy 1 share of Apple at market price
33 | ord_mkt = api.submit_order(
34 | symbol='AAPL',
35 | qty=1,
36 | side='buy',
37 | type='market',
38 | time_in_force='gtc'
39 | )
40 |
41 | # Submit a limit order to attempt to sell 1 share of AMD at a
42 | # particular price ($20.50) when the market opens
43 | ord_lmt = api.submit_order(
44 | symbol='AMD',
45 | qty=1,
46 | side='sell',
47 | type='limit',
48 | time_in_force='opg',
49 | limit_price=20.50
50 | )
51 |
52 | # The security we'll be shorting
53 | symbol = 'TSLA'
54 |
55 | # Submit a market order to open a short position of one share
56 | ord_shrt = api.submit_order(symbol, 1, 'sell', 'market', 'day')
57 | print("Market order submitted.")
58 |
59 | # Submit a limit order to attempt to grow our short position
60 | # First, get an up-to-date price for our symbol
61 | symbol_bars = api.get_barset(symbol, 'minute', 1).df.iloc[0]
62 | symbol_price = symbol_bars[symbol]['close']
63 | # Submit an order for one share at that price
64 | ord_shrt = api.submit_order(symbol, 1, 'sell', 'limit', 'day', symbol_price)
65 | print("Limit order submitted.")
66 |
67 | # Wait a second for our orders to fill...
68 | print('Waiting...')
69 | time.sleep(1)
70 |
71 | # Check on our position
72 | position = api.get_position(symbol)
73 | if int(position.qty) < 0:
74 | print(f'Short position open for {symbol}')
75 |
76 | # Submit a market order and assign it a Client Order ID.
77 | api.submit_order(
78 | symbol='AAPL',
79 | qty=1,
80 | side='buy',
81 | type='market',
82 | time_in_force='gtc',
83 | client_order_id='my_first_order'
84 | )
85 |
86 | # Get our order using its Client Order ID.
87 | my_order = api.get_order_by_client_order_id('my_first_order')
88 | print('Got order #{}'.format(my_order.id))
89 |
90 | # Get the last 100 of our closed orders
91 | closed_orders = api.list_orders(
92 | status='closed',
93 | limit=100
94 | )
95 |
96 | # Get only the closed orders for a particular stock
97 | closed_aapl_orders = [o for o in closed_orders if o.symbol == 'AAPL']
98 | print(closed_aapl_orders)
99 |
100 | #Websockets to receive real-time updates about the status of your orders as they change
101 | conn = tradeapi.stream2.StreamConn(cred.APCA_API_KEY_ID, cred.APCA_API_SECRET_KEY)
102 |
103 | # Handle updates on an order you've given a Client Order ID.
104 | # The r indicates that we're listening for a regex pattern.
105 | client_order_id = r'my_client_order_id'
106 | @conn.on(client_order_id)
107 | async def on_msg(conn, channel, data):
108 | # Print the update to the console.
109 | print("Update for {}. Event: {}.".format(client_order_id, data['event']))
110 |
111 | # Start listening for updates.
112 | conn.run(['trade_updates'])
113 |
114 | # Get our position in AAPL.
115 | aapl_position = api.get_position('AAPL')
116 |
117 | # Get a list of all of our positions.
118 | portfolio = api.list_positions()
119 |
--------------------------------------------------------------------------------
/SAKModules/IBKR_Allinone.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as psg
2 | import logging, time, os
3 | import pandas as pd
4 | from ib_insync import *
5 | from datetime import datetime, timezone, timedelta
6 | from dateutil import tz
7 | from secret import cred
8 |
9 | logging.basicConfig(
10 | level=logging.INFO,
11 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
12 | datefmt='%m/%d/%Y %I:%M:%S %p',
13 | handlers=[
14 | logging.FileHandler(filename='SAK.log'),
15 | logging.StreamHandler()
16 | ]
17 | )
18 |
19 | def utc2local (utc):
20 | from_zone = tz.tzutc()
21 | to_zone = tz.tzlocal()
22 | return utc.astimezone(to_zone)
23 |
24 | def local2utc(local):
25 | epoch = time.mktime(local.timetuple())
26 | offset = datetime.fromtimestamp (epoch) - datetime.utcfromtimestamp (epoch)
27 | return (local - offset).replace(tzinfo=None)
28 |
29 | def getTickFor(ib, qualContract, dtmStartDate, dtmEndDate, intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, strPath):
30 | logging.info('Entered getTickFor().')
31 | strCurrency = qualContract[0].currency
32 | strExchange = qualContract[0].exchange
33 | strContract = qualContract[0].symbol
34 | stkContract = qualContract[0]
35 |
36 | #get the last tick of the day so that we know where to stop
37 | listEndOfDayTicks = ib.reqHistoricalTicks(stkContract, '', dtmEndDate, 10, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
38 | dtmLastTickTime = listEndOfDayTicks[-1].time
39 |
40 | #initiate a listTicks to keep appending to later:
41 | listTicks = ib.reqHistoricalTicks(stkContract, dtmStartDate, '', intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
42 | #now start looping through the day's ticks
43 | #initial starting point is set above with the end of the first listTicks
44 | dtmStartPoint = listTicks[-1].time
45 | #first fetch is already over:
46 | intCountRequests = 1
47 | logging.info('Request number {} Received {} ticks from {}(UTC) to {}(UTC).'.format(intCountRequests, len(listTicks), dtmStartDate, listTicks[-1].time))
48 | while (dtmStartPoint < dtmLastTickTime):
49 | listFetch = ib.reqHistoricalTicks(stkContract, dtmStartPoint, '', intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
50 | if (listFetch[0].time != listFetch[-1].time): #ie, if the first tick != last tick of listTicks, it means there's more data to be had in the day
51 | listTicks = listTicks + listFetch
52 | dtmStartPoint = listTicks[-1].time # and increment next loop's start point to this listTick's last time
53 | intCountRequests += 1
54 | else:
55 | #reset start point to the end of trading hour, so that the next fetch automatically gets the next day's opening data
56 | dtmStartPoint = listTicks[-1].time + timedelta(0.1)
57 | time.sleep(0.1)
58 | logging.info('Request number {} Received {} ticks from {} (UTC) to {} (UTC).'.format(intCountRequests, len(listFetch), dtmStartPoint, listTicks[-1].time))
59 |
60 | #convert listTicks to a CSV and save
61 | dfTicks = pd.DataFrame(listTicks)
62 | dfTicks = dfTicks.rename(columns={'tickAttribLast':'symbol', 'specialConditions':'currency'})
63 | dfTicks['symbol'] = stkContract.symbol
64 | dfTicks['exchange'] = stkContract.exchange
65 | dfTicks['currency'] = stkContract.currency
66 | #dfTicks['time'] = dfTicks['time'].apply(utc2local)
67 | dfTicks['dataType'] = 'Ticks_' + strWhatToShow +'_RTH' if boolUseRTH else '_RHT+AMO'
68 | dfTicks.to_csv(strPath + '/' + strContract +'_'+ str(dtmStartDate) +'_'+ str(dtmEndDate)+'.csv', index=False)
69 | logging.info('FINISHED: {}'.format(strContract))
70 | psg.popup('Finished getting data for {}'.format(strContract))
71 |
72 | #for getting contract data
73 | listSecTypes = ['STK','CASH','IND'] # add these as useful: ,'OPT','FUT','FOP','CFD','BAG','WAR','BOND','CMDTY','NEWS','FUND'
74 | listExchanges = ['NSE', 'IDEALPRO']
75 | listCurrencies = ['INR', 'USD', 'JPY', 'CHF', 'EUR']
76 |
77 | #for drawing table
78 | listHeadings = ['date', 'open', 'high', 'low', 'close', 'volume', 'barCount', 'average']
79 |
80 | #for placing data request
81 | listDurStr2 = ['S', 'D', 'W', 'M', 'Y'] #!use with integer prefix
82 | listBarSizes = ['1 secs', '5 secs', '10 secs', '15 secs', '30 secs',
83 | '1 min', '2 mins', '3 mins', '5 mins', '10 mins', '15 mins', '20 mins', '30 mins',
84 | '1 hour', '2 hours', '3 hours', '4 hours', '8 hours',
85 | '1 day', '1W', '1M']
86 | listWhatToShows = ['TRADES', 'MIDPOINT', 'BID', 'ASK', 'BID_ASK', 'ADJUSTED_LAST', 'HISTORICAL_VOLATILITY',
87 | 'OPTION_IMPLIED_VOLATILITY', 'REBATE_RATE', 'FEE_RATE', 'YIELD_BID', 'YIELD_ASK',
88 | 'YIELD_BID_ASK', 'YIELD_LAST']
89 |
90 | str_default_path = os.getcwd() + '/Downloads'
91 |
92 | frame_connect = [
93 | [psg.Text('Enter connection paramters below:')],
94 | [
95 | psg.Text('IP Address: ', size=(12,1)),psg.Input(cred.str_ib_ip, key='_IB_IP_', size=(15,1)),
96 | psg.Text('Port: ', size=(6,1)),psg.Input(cred.int_ib_port, key='_IB_PORT_', size=(15,1)),
97 | psg.Text('Client ID', size=(10,1)),psg.Input(cred.int_ib_uid, key='_IB_UID_', size=(15,1))
98 | ],
99 | [psg.Text("Disconnected.", text_color='red', key='_IB_STATUS_')],
100 | [psg.Button('Connect', key='_BT_CONN_', disabled=False), psg.Button('Disconnect', key='_BT_DISCO_', disabled=True)]
101 | ]
102 |
103 | frame_qualify = [
104 | [
105 | psg.Input(default_text="RELIANCE", key='_Symbol_', tooltip='Exact IBKR symbol', size=(15,1)),
106 | psg.Combo(listSecTypes, key='_SecType_', size = (4,1), tooltip='STK = Stock, CASH = Forex, IND = Index'),
107 | psg.Combo(listExchanges, key='_Exchange_', size = (4,1)),
108 | psg.Combo(listCurrencies, key='_Currency_', size = (4,1)),
109 | psg.Text('Qualified Security: '),
110 | psg.Text('', size=(15,1), key='_OUTPUT_')
111 | ],
112 | [
113 | psg.Button('Qualify', key='_BT_QUAL_', disabled=True)
114 | ]
115 | ]
116 |
117 | frame_tick = [
118 | [
119 | psg.Text('Pick Dates: '),
120 | psg.Input(key='_StartDate_', size=(9,1), disabled=True, font='Courier'),
121 | psg.CalendarButton('Start Date', target='_StartDate_'),
122 | psg.Input(key='_EndDate_', size=(9,1), disabled=True, font='Courier'),
123 | psg.CalendarButton('End Date', target='_EndDate_')
124 | ],
125 | [
126 | psg.Input(default_text="1000", key='_tickCount_', tooltip='Number of ticks to fetch at a time', size=(4,1), disabled=True),
127 | psg.Combo(listWhatToShows, key='_whatToShow_', auto_size_text=True),
128 | psg.Checkbox('RTH?', key='_useRTH_'),
129 | psg.Checkbox('Size Only Ticks?', key='_ignoreSize_')
130 |
131 | ],
132 | [
133 | psg.Text('Your Folder', size=(15, 1), auto_size_text=False),
134 | psg.InputText(str_default_path, key='_targetFolder_'),
135 | psg.FolderBrowse(target='_targetFolder_')
136 | ],
137 | [psg.Button('Get Ticks', key='_BT_TICK_', disabled=True)],
138 | ]
139 |
140 | frame_OHLC =[
141 | [
142 | psg.Input(default_text=1, key='_DurStr1_', size=(4,1)),
143 | psg.Combo(listDurStr2, key='_DurStr2_', size=(4,1)),
144 | psg.Combo(listBarSizes, key='_BarSize_', size=(8,1)),
145 | psg.Combo(listWhatToShows, key='_WhatToShow_', auto_size_text=True)
146 | ],
147 | [psg.Button('Fetch', key='_BT_OHLC_', disabled=True), psg.Button('Download', key='_BT_DL_', disabled=True)],
148 | [psg.Text('Data Preview: ')],
149 | [
150 | psg.Table(key='sgtable', values = [['','','','','','','','']], #placeholders until we learn how to dynamically create columns in PySimpleGUI
151 | headings=listHeadings,
152 | auto_size_columns=True,
153 | alternating_row_color='#add8e6',
154 | num_rows=3)
155 | ]
156 | ]
157 |
158 | layout = [
159 | [psg.Frame('Connection Manager', frame_connect)],
160 | [psg.Frame('Qualify Contract', frame_qualify)],
161 | [psg.Frame('Tick Data', frame_tick)],
162 | [psg.Frame('OHLC Data', frame_OHLC)],
163 | [psg.CButton('Exit')]
164 | ]
165 | def main(ib):
166 | win_ibkr_allinone = psg.Window('IBRK Utilities', layout=layout)
167 | while True: # Event Loop
168 | event, values = win_ibkr_allinone.Read()
169 | if event in (None, 'Exit'):
170 | win_ibkr_allinone.Close()
171 | break
172 | if event == '_BT_CONN_':
173 | logging.info("Connect clicked.")
174 | try:
175 | logging.info("Trying to connect.")
176 | ib.connect(
177 | str(win_ibkr_allinone['_IB_IP_'].Get()),
178 | int(win_ibkr_allinone['_IB_PORT_'].Get()),
179 | int(win_ibkr_allinone['_IB_UID_'].Get())
180 | )
181 | except ConnectionRefusedError:
182 | win_ibkr_allinone.Element('_IB_STATUS_').Update("Connection Refused!", text_color='red')
183 | logging.info("Connection Refused!")
184 | except:
185 | win_ibkr_allinone.Element('_IB_STATUS_').Update("Error!")
186 | logging.info("Error!")
187 | if ib.isConnected() == True:
188 | win_ibkr_allinone.Element('_IB_STATUS_').Update("Connected!", text_color='green')
189 | win_ibkr_allinone.Element('_BT_CONN_').Update(disabled=True) #can't connect if altready connected
190 | win_ibkr_allinone.Element('_BT_DISCO_').Update(disabled=False) #to disconnect after connection
191 | win_ibkr_allinone.Element('_BT_QUAL_').Update(disabled=False) #after every conn, fresh qualification
192 | win_ibkr_allinone.Element('_BT_TICK_').Update(disabled=True) #not active until qual()
193 | win_ibkr_allinone.Element('_BT_OHLC_').Update(disabled=True) #not active until qual()
194 | win_ibkr_allinone.Element('_BT_DL_').Update(disabled=True) #not active until qual()
195 | logging.info("Connected!")
196 | if event == '_BT_DISCO_':
197 | logging.info('Disconnect clicked.')
198 | if ib.isConnected == True:
199 | ib.disconnect()
200 | logging.info('Disconnected successfully.')
201 | win_ibkr_allinone.Element('_IB_STATUS_').Update("Disconnected.", text_color='red')
202 | win_ibkr_allinone.Element('_BT_CONN_').Update(disabled=False)
203 | win_ibkr_allinone.Element('_BT_DISCO_').Update(disabled=True)
204 | win_ibkr_allinone.Element('_BT_QUAL_').Update(disabled=True)
205 | win_ibkr_allinone.Element('_BT_TICK_').Update(disabled=True)
206 | win_ibkr_allinone.Element('_BT_OHLC_').Update(disabled=True)
207 | win_ibkr_allinone.Element('_BT_DL_').Update(disabled=True)
208 | else:
209 | win_ibkr_allinone.Element('_IB_STATUS_').Update("Disconnected.", text_color='red')
210 | win_ibkr_allinone.Element('_BT_CONN_').Update(disabled=False)
211 | win_ibkr_allinone.Element('_BT_DISCO_').Update(disabled=True)
212 | win_ibkr_allinone.Element('_BT_QUAL_').Update(disabled=True)
213 | win_ibkr_allinone.Element('_BT_TICK_').Update(disabled=True)
214 | win_ibkr_allinone.Element('_BT_OHLC_').Update(disabled=True)
215 | win_ibkr_allinone.Element('_BT_DL_').Update(disabled=True)
216 | logging.info('Faked a disconnection.')
217 | if event == '_BT_QUAL_':
218 | if values['_SecType_'] == 'STK':
219 | contract = Stock(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
220 | if values['_SecType_'] == 'CASH':
221 | contract = Forex(values['_Symbol_'])
222 | if values['_SecType_'] == 'IND':
223 | contract = Index(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
224 | qual = ib.qualifyContracts(contract)
225 | logging.info(str(qual))
226 | win_ibkr_allinone['_OUTPUT_'].Update(str(qual[0].symbol))
227 | win_ibkr_allinone.Element('_BT_TICK_').Update(disabled=False) #enable getting tick data
228 | win_ibkr_allinone.Element('_BT_OHLC_').Update(disabled=False) #enable getting OHLC data
229 | if event == '_BT_TICK_':
230 | logging.info('Starting tick fetch.')
231 | fmt = '%Y-%m-%d %H:%M:%S'
232 | strStartTime = win_ibkr_allinone['_StartDate_'].Get() #datetime(2019, 11, 7, 3, 00, tzinfo=timezone.utc)
233 | dtmStartTime = datetime.strptime(strStartTime, fmt)
234 | strEndTime = win_ibkr_allinone['_EndDate_'].Get() #datetime(2019, 11, 8, 11, 00, tzinfo=timezone.utc)
235 | dtmEndTime = datetime.strptime(strEndTime, fmt)
236 | dtmEndTime = dtmEndTime.replace(hour=23, minute=23)
237 | intTicks = int(win_ibkr_allinone['_tickCount_'].Get())
238 | strWhatToShow = str(win_ibkr_allinone['_whatToShow_'].Get())
239 | boolUseRTH = bool(win_ibkr_allinone['_useRTH_'].Get())
240 | boolIgnoreSize = bool(win_ibkr_allinone['_ignoreSize_'].Get())
241 | strPath = str(win_ibkr_allinone['_targetFolder_'].Get())
242 | logging.info('{},{},{},{},{},{},{}'.format(dtmStartTime, dtmEndTime,intTicks,strWhatToShow,boolUseRTH,boolIgnoreSize,strPath))
243 | if dtmEndTime > dtmStartTime:
244 | psg.popup('Starting download for {}'.format(qual[0].symbol))
245 | getTickFor(ib, qual, dtmStartTime, dtmEndTime, intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, strPath)
246 | if event == '_BT_OHLC_':
247 | strDuration = str(values['_DurStr1_']) +' ' + str(values['_DurStr2_'])
248 | strBarSize = str(values['_BarSize_'])
249 | strWhatToShow = str(values['_WhatToShow_'])
250 | logging.info('strDuration:%s , strBarSize: %s , strWhatToShow: %s', strDuration, strBarSize, strWhatToShow)
251 | barData = ib.reqHistoricalData(contract, '',strDuration, strBarSize, strWhatToShow, 1, 1, False)
252 | listData = [[item.date.strftime("%Y%m%d, %H:%M:%S"), item.open, item.high, item.low, item.close, item.volume, item.barCount, item.average] for item in barData]
253 | dfStockData = pd.DataFrame(listData)
254 | if dfStockData.shape[1]==8 and dfStockData.shape[0]>0:
255 | logging.info('dfStockData sample: %s',dfStockData.head(3))
256 | dfStockData.columns = ['date', 'open', 'high', 'low', 'close', 'volume', 'barCount', 'average']
257 | relist = dfStockData.values.tolist()
258 | win_ibkr_allinone.Element('sgtable').Update(values=relist,
259 | num_rows=3,
260 | visible = True)
261 | win_ibkr_allinone.Element('_BT_DL_').Update(disabled=False) #enable getting OHLC data
262 | if event == '_BT_DL_':
263 | if dfStockData.shape[1]==8 and dfStockData.shape[0]>0:
264 | file_name = psg.PopupGetFile('Please enter filename to save (if file exists, it will be overwritten): ', save_as=True)
265 | fileTarget = open(file_name, 'w+')
266 | dfStockData.to_csv(fileTarget)
267 | fileTarget.close()
268 | psg.Popup("File saved.")
269 | #if NOT populated
270 | else:
271 | psg.Popup("Please fetch some data before trying to save it.")
272 |
273 |
274 | if __name__ == "__main__":
275 | ib = IB()
276 | main(ib)
--------------------------------------------------------------------------------
/SAKModules/IBKR_Connect_Window.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as sg
2 | from secret import cred
3 | import logging
4 |
5 | logging.basicConfig(
6 | filename='SAK.log',
7 | level=logging.INFO,
8 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
9 | datefmt='%m/%d/%Y %I:%M:%S %p'
10 | )
11 |
12 | layout = [
13 | [sg.Text('Enter connection paramters below:')],
14 | [sg.Text('IP Address: ', size=(15,1)),sg.Input(cred.str_ib_ip, key='_IP_', size=(15,1))],
15 | [sg.Text('Port: ', size=(15,1)),sg.Input(cred.int_ib_port, key='_PORT_', size=(15,1))],
16 | [sg.Text('Client ID', size=(15,1)),sg.Input(cred.int_ib_uid, key='_UID_', size=(15,1))],
17 | [sg.Text('', key='_OUTPUT_')],
18 | [sg.Button('Connect'), sg.Button('Disconnect'), sg.Button('Exit')]
19 | ]
20 |
21 | def main(ib):
22 | win_ibkr_connect = sg.Window('IBKR: Connect', layout)
23 | logging.info("IBKR:Connect launched")
24 |
25 | while True: # Event Loop
26 | event, values = win_ibkr_connect.Read()
27 | if event == 'Exit':
28 | logging.info("exit hit")
29 | win_ibkr_connect.Close()
30 | break
31 | if event == 'Connect':
32 | logging.info("Asked to connect.")
33 | try:
34 | logging.info("Trying to connect.")
35 | logging.info("%s %s %s", str(win_ibkr_connect.Element('_IP_').Get()), str(win_ibkr_connect.Element('_PORT_').Get()), str(win_ibkr_connect.Element('_UID_').Get()))
36 | ib.connect(
37 | str(win_ibkr_connect.Element('_IP_').Get()),
38 | int(win_ibkr_connect.Element('_PORT_').Get()),
39 | int(win_ibkr_connect.Element('_UID_').Get()),
40 | )
41 | except ConnectionRefusedError:
42 | win_ibkr_connect.Element('_OUTPUT_').Update("Connection Refused!")
43 | logging.info("Connection Refused!")
44 | except:
45 | win_ibkr_connect.Element('_OUTPUT_').Update("Error!")
46 | logging.info("Error!")
47 | if ib.isConnected() == True:
48 | win_ibkr_connect.Element('_OUTPUT_').Update("Connected!")
49 | logging.info("Connected!")
50 |
51 | if __name__ == "__main__":
52 | from ib_insync import *
53 | ib = IB()
54 | main(ib)
--------------------------------------------------------------------------------
/SAKModules/IBKR_Historical_Window.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as sg
2 | import logging
3 | import pandas as pd
4 | from secret import cred
5 |
6 | logging.basicConfig(
7 | filename='SAK.log',
8 | level=logging.INFO,
9 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
10 | datefmt='%m/%d/%Y %I:%M:%S %p'
11 | )
12 |
13 | #for getting contract data
14 | listSecTypes = ['STK','CASH','IND'] # add these as useful: ,'OPT','FUT','FOP','CFD','BAG','WAR','BOND','CMDTY','NEWS','FUND'
15 | listExchanges = ['NSE', 'IDEALPRO']
16 | listCurrencies = ['INR', 'USD', 'JPY', 'CHF', 'EUR']
17 |
18 | #for drawing table
19 | listHeadings = ['date', 'open', 'high', 'low', 'close', 'volume', 'barCount', 'average']
20 |
21 | #for placing data request
22 | listDurStr2 = ['S', 'D', 'W', 'M', 'Y'] #!use with integer prefix
23 | listBarSizes = ['1 secs', '5 secs', '10 secs', '15 secs', '30 secs',
24 | '1 min', '2 mins', '3 mins', '5 mins', '10 mins', '15 mins', '20 mins', '30 mins',
25 | '1 hour', '2 hours', '3 hours', '4 hours', '8 hours',
26 | '1 day', '1W', '1M']
27 | listWhatToShows = ['TRADES', 'MIDPOINT', 'BID', 'ASK', 'BID_ASK', 'ADJUSTED_LAST', 'HISTORICAL_VOLATILITY',
28 | 'OPTION_IMPLIED_VOLATILITY', 'REBATE_RATE', 'FEE_RATE', 'YIELD_BID', 'YIELD_ASK',
29 | 'YIELD_BID_ASK', 'YIELD_LAST']
30 |
31 | layout= [
32 | [
33 | sg.Input(default_text="RELIANCE", key='_Symbol_', tooltip='Exact IBKR symbol'),
34 | sg.Combo(listSecTypes, key='_SecType_', auto_size_text=True, tooltip='STK = Stock, CASH = Forex, IND = Index'),
35 | sg.Combo(listExchanges, key='_Exchange_', auto_size_text=True),
36 | sg.Combo(listCurrencies, key='_Currency_', auto_size_text=True)
37 | ],
38 | [sg.Button('Qualify'), sg.Text('Qualified Security: '), sg.Text('', size=(15,1), key='_OUTPUT_')],
39 | [
40 | sg.Input(default_text=1, key='_DurStr1_', size=(3,1)),
41 | sg.Combo(listDurStr2, key='_DurStr2_', size=(3,1)),
42 | sg.Combo(listBarSizes, key='_BarSize_', size=(7,1)),
43 | sg.Combo(listWhatToShows, key='_WhatToShow_', auto_size_text=True)
44 | ],
45 | [sg.Button('Fetch'), sg.Button('Download'), sg.Button('Exit')],
46 | [sg.Text('Data Preview: ')],
47 | [sg.Table(key='sgtable', values = [['','','','','','','','']], #placeholders until we learn how to dynamically create columns in PySimpleGUI
48 | headings=listHeadings,
49 | auto_size_columns=True,
50 | alternating_row_color='#add8e6',
51 | num_rows=1)]
52 | ]
53 |
54 | def main(ib):
55 | from ib_insync import Stock, Forex, Index
56 | win_historical = sg.Window('Historical OHLC', layout)
57 |
58 | while True: # Event Loop
59 | event, values = win_historical.Read()
60 | if event == 'Exit':
61 | #? commenting out "disconnect()" because any calling procedure would not want a child to disconnect it
62 | #ib.disconnect()
63 | logging.info("exit hit")
64 | win_historical.Close()
65 | break
66 |
67 | if event == 'Qualify':
68 | # Update the "output" element to be the value of "input" element
69 | win_historical.Element('_OUTPUT_').Update(values['_Symbol_'])
70 | if values['_SecType_'] == 'STK':
71 | contract = Stock(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
72 | if values['_SecType_'] == 'CASH':
73 | contract = Forex(values['_Symbol_'])
74 | if values['_SecType_'] == 'IND':
75 | contract = Index(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
76 | qual = ib.qualifyContracts(contract)
77 | logging.info(str(qual))
78 |
79 | if event == 'Fetch':
80 | strDuration = str(values['_DurStr1_']) +' ' + str(values['_DurStr2_'])
81 | strBarSize = str(values['_BarSize_'])
82 | strWhatToShow = str(values['_WhatToShow_'])
83 | logging.info('strDuration:%s , strBarSize: %s , strWhatToShow: %s', strDuration, strBarSize, strWhatToShow)
84 | barData = ib.reqHistoricalData(contract, '',strDuration, strBarSize, strWhatToShow, 1, 1, False)
85 | listData = [[item.date.strftime("%Y%m%d, %H:%M:%S"), item.open, item.high, item.low, item.close, item.volume, item.barCount, item.average] for item in barData]
86 | dfStockData = pd.DataFrame(listData)
87 | if dfStockData.shape[1]==8 and dfStockData.shape[0]>0:
88 | logging.info('dfStockData sample: %s',dfStockData.head(3))
89 | dfStockData.columns = ['date', 'open', 'high', 'low', 'close', 'volume', 'barCount', 'average']
90 | relist = dfStockData.values.tolist()
91 | win_historical.Element('sgtable').Update(values=relist,
92 | num_rows=25,
93 | visible = True)
94 | if event == 'Download':
95 | #check if the DatFrame is minimally populated or not.
96 | #if populated:
97 | if dfStockData.shape[1]==8 and dfStockData.shape[0]>0:
98 | file_name = sg.PopupGetFile('Please enter filename to save (if file exists, it will be overwritten): ', save_as=True)
99 | fileTarget = open(file_name, 'w+')
100 | dfStockData.to_csv(fileTarget)
101 | fileTarget.close()
102 | sg.Popup("File saved.")
103 | #if NOT populated
104 | else:
105 | sg.Popup("Please fetch some data before trying to save it.")
106 |
107 | if __name__ == "__main__":
108 | from ib_insync import *
109 | ib = IB()
110 | conn = ib.connect(cred.str_ib_ip, cred.int_ib_port, cred.int_ib_uid)
111 | main(ib)
--------------------------------------------------------------------------------
/SAKModules/IBKR_Tick_Data_Window.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as sg
2 | from ib_insync import *
3 | from datetime import datetime, timezone, timedelta
4 | import time, logging, os
5 | import pandas as pd
6 | from secret import cred
7 |
8 | logging.basicConfig(
9 | filename='SAK.log',
10 | level=logging.INFO,
11 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
12 | datefmt='%m/%d/%Y %I:%M:%S %p'
13 | )
14 |
15 | str_default_path = os.getcwd() + '/downloaded'
16 |
17 | #for getting contract data
18 | listSecTypes = ['STK','CASH','IND'] # add these as useful: ,'OPT','FUT','FOP','CFD','BAG','WAR','BOND','CMDTY','NEWS','FUND'
19 | listExchanges = ['NSE', 'IDEALPRO']
20 | listCurrencies = ['INR', 'USD', 'JPY', 'CHF', 'EUR']
21 |
22 | #for placing data request
23 | listDurStr2 = ['S', 'D', 'W', 'M', 'Y'] #!use with integer prefix
24 | listBarSizes = ['1 secs', '5 secs', '10 secs', '15 secs', '30 secs',
25 | '1 min', '2 mins', '3 mins', '5 mins', '10 mins', '15 mins', '20 mins', '30 mins',
26 | '1 hour', '2 hours', '3 hours', '4 hours', '8 hours',
27 | '1 day', '1W', '1M']
28 | listWhatToShows = ['Bid_Ask', 'Midpoint', 'Trades']
29 |
30 | # All the stuff inside your window.
31 | layout= [
32 | [
33 | sg.Input(default_text="RELIANCE", key='_Symbol_', tooltip='Exact IBKR symbol', size=(10,1)),
34 | sg.Combo(listSecTypes, key='_SecType_', auto_size_text=True, tooltip='STK = Stock, CASH = Forex, IND = Index'),
35 | sg.Combo(listExchanges, key='_Exchange_', auto_size_text=True),
36 | sg.Combo(listCurrencies, key='_Currency_', auto_size_text=True)
37 | ],
38 | [
39 | sg.Button('Qualify'), sg.Text('Qualified Security: '), sg.Text('', size=(15,1), key='_OUTPUT_')
40 | ],
41 | [
42 | sg.Input(key='_StartDate_', size=(9,1), disabled=True),
43 | sg.CalendarButton('Start Date', target='_StartDate_'),
44 | sg.Input(key='_EndDate_', size=(9,1), disabled=True),
45 | sg.CalendarButton('End Date', target='_EndDate_'),
46 | sg.Text('Pick Dates')
47 | ],
48 | [
49 | sg.Input(default_text="1000", key='_tickCount_', tooltip='Number of ticks to fetch at a time', size=(4,1), disabled=True),
50 | sg.Combo(listWhatToShows, key='_whatToShow_', auto_size_text=True),
51 | sg.Checkbox('RTH?', key='_useRTH_'),
52 | sg.Checkbox('Size Only Ticks?', key='_ignoreSize_')
53 |
54 | ],
55 | [
56 | sg.Text('Your Folder', size=(15, 1), auto_size_text=False, justification='right'),
57 | sg.InputText(str_default_path, key='_targetFolder_'),
58 | sg.FolderBrowse(target='_targetFolder_')
59 | ],
60 | [sg.Button('Fetch'), sg.Button('Download'), sg.CButton('Close', key='_CloseWindow_')],
61 | [sg.Text('Data gathered: '), sg.Text('',key='_TickCount_')]
62 | ]
63 |
64 |
65 | def utc2local (utc):
66 | #NOTE converts UTC time to LOCAL
67 | epoch = time.mktime(utc.timetuple())
68 | offset = datetime.fromtimestamp (epoch) - datetime.utcfromtimestamp (epoch)
69 | return (utc + offset).replace(tzinfo=None)
70 |
71 | def local2utc(local):
72 | #NOTE converts LOCAL time to UTC
73 | epoch = time.mktime(local.timetuple())
74 | offset = datetime.fromtimestamp (epoch) - datetime.utcfromtimestamp (epoch)
75 | return (local - offset).replace(tzinfo=None)
76 |
77 |
78 | def loop_reqHistoricalTicks(ib, stkContract, dtmStartTime, dtmEndTime, intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize):
79 | listEndOfDayTicks = ib.reqHistoricalTicks(stkContract, '', dtmEndTime, 10, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
80 | dtmLastTickTime = listEndOfDayTicks[-1].time
81 |
82 | #now start looping through the day's ticks
83 | listTicks = ib.reqHistoricalTicks(stkContract, dtmStartTime, '', intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
84 | dtmStartPoint = listTicks[-1].time
85 | intCountRequests = 1
86 | print('Request number {} Received {} ticks from {} to {}'.format(intCountRequests, len(listTicks), utc2local(dtmStartTime), utc2local(listTicks[-1].time)))
87 | while (dtmStartPoint < dtmLastTickTime):
88 | listFetch = ib.reqHistoricalTicks(stkContract, dtmStartPoint, '', intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize, None)
89 | if (listFetch[0].time != listFetch[-1].time):
90 | listTicks = listTicks + listFetch
91 | dtmStartPoint = listTicks[-1].time
92 | intCountRequests += 1
93 | else:
94 | dtmStartPoint = listTicks[-1].time + timedelta(0.1)
95 | time.sleep(0.2)
96 | print('Request number {} Received {} ticks from {} (UTC) to {} (UTC).'.format(intCountRequests, len(listFetch), listFetch[0].time, listFetch[-1].time))
97 | return listTicks
98 |
99 |
100 | def main(ib):
101 | from ib_insync import Stock, Forex, Index
102 | win_historical_ticks = sg.Window('IBKR Historical Ticks', layout)
103 | #win_historical_ticks.Element('_TickCount_').Update('0')
104 |
105 | # Event Loop to process "events" and get the "values" of the inputs
106 | while True: # Event Loop
107 | event, values = win_historical_ticks.Read()
108 |
109 | if event == '_CloseWindow_':
110 | #? commenting out "disconnect()" because any calling procedure would not want a child to disconnect it
111 | #ib.disconnect()
112 | logging.info("Close hit")
113 | win_historical_ticks.close()
114 | break
115 |
116 | if event == 'Qualify':
117 | # Update the "output" element to be the value of "input" element
118 | win_historical_ticks.Element('_OUTPUT_').Update(values['_Symbol_'])
119 | if values['_SecType_'] == 'STK':
120 | contract = Stock(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
121 | if values['_SecType_'] == 'CASH':
122 | contract = Forex(values['_Symbol_'])
123 | if values['_SecType_'] == 'IND':
124 | contract = Index(values['_Symbol_'], values['_Exchange_'],values['_Currency_'])
125 | qual = ib.qualifyContracts(contract)
126 | logging.info(str(qual))
127 |
128 | if event == 'Fetch':
129 | #NOTE add validations here
130 | if values['_targetFolder_'] != '':
131 | dtmStartTime = datetime.strptime(str(values['_StartDate_']), '%Y-%m-%d %H:%M:%S')
132 | dtmStartTime = dtmStartTime.replace(hour=0, minute=1)
133 | dtmEndTime = datetime.strptime(str(values['_EndDate_']), '%Y-%m-%d %H:%M:%S')
134 | dtmEndTime = dtmEndTime.replace(hour=23, minute=59)
135 |
136 | intTicks = int(values['_tickCount_'])
137 | # whatToShow (str) – One of ‘Bid_Ask’, ‘Midpoint’ or ‘Trades’.
138 | strWhatToShow = str(values['_whatToShow_'])
139 | # useRTH – If True then only show data from within Regular Trading Hours, if False then show all data.
140 | boolUseRTH = bool(values['_useRTH_'])
141 | # ignoreSize (bool) – Ignore bid/ask ticks that only update the size.
142 | boolIgnoreSize = bool(values['_ignoreSize_'])
143 | #sg.popup(str([dtmStartTime, " - ", dtmEndTime, " - ", intTicks, " - ", strWhatToShow, " - ", boolUseRTH, " - ", boolIgnoreSize]))
144 | if dtmEndTime > dtmStartTime:
145 | listTicks = loop_reqHistoricalTicks(ib, contract, dtmStartTime, dtmEndTime, intTicks, strWhatToShow, boolUseRTH, boolIgnoreSize)
146 | #convert listTicks to a CSV and save
147 | dfTicks = pd.DataFrame(listTicks)
148 | dfTicks = dfTicks.rename(columns={'tickAttribLast':'symbol', 'specialConditions':'currency'})
149 | dfTicks['symbol'] = contract.symbol
150 | dfTicks['exchange'] = contract.exchange
151 | dfTicks['currency'] = contract.currency
152 | dfTicks['time'] = dfTicks['time'].apply(utc2local)
153 | dfTicks['dataType'] = 'Ticks_' + str(values['_whatToShow_']) +('_RTH' if boolUseRTH else '_RHT+AMO')
154 | #For Linux uncomment below
155 | #dfTicks.to_csv(values['_targetFolder_'] +'/'+ contract.symbol +'_'+ str(dtmStartTime) +'_'+ str(dtmEndTime)+'.csv', index=False)
156 | #For Windows uncomment below
157 | dfTicks.to_csv(str_default_path +'//'+ contract.symbol +'_'+ dtmStartTime.strftime("%Y%M%d_%H%M%S") +'_'+ dtmEndTime.strftime("%Y%M%d_%H%M%S") +'.csv', index=False)
158 |
159 | if __name__ == "__main__":
160 | from ib_insync import *
161 | ib = IB()
162 | conn = ib.connect(cred.str_ib_ip, cred.int_ib_port, cred.int_ib_uid)
163 | main(ib)
164 |
165 | datetime.now().strftime("%Y%M%d_%H%M%S")
--------------------------------------------------------------------------------
/SAKModules/MySQL_Allinone.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as psg
2 | import sqlalchemy, glob, logging, os
3 | import pandas as pd
4 | from secret import cred #path is relative to SAK.py, not this file.
5 |
6 | logging.basicConfig(
7 | filename='SAK.log',
8 | level=logging.INFO,
9 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
10 | datefmt='%m/%d/%Y %I:%M:%S %p'
11 | )
12 |
13 | frame_connect = [
14 | [psg.Text('Enter database connection paramters below:')], #host, user, pass, dbas
15 | [
16 | psg.Text('Host: ', size=(15,1)),psg.Input(cred.str_mysql_host, key='_HOST_', size=(15,1)),
17 | psg.Text('Database: ', size=(15,1)),psg.Input(cred.str_mysql_database, key='_DBAS_', size=(15,1))
18 | ],
19 | [
20 | psg.Text('User: ', size=(15,1)),psg.Input(cred.str_mysql_user, key='_USER_', size=(15,1)),
21 | psg.Text('Password:', size=(15,1)),psg.InputText(cred.str_mysql_password, key='_PWRD_', size=(15,1), password_char='*')
22 | ],
23 | [],
24 | [psg.Text('Disconnected.', key='_OUTPUT_', text_color='red')],
25 | [psg.Button('Connect'), psg.Button('Disconnect')]
26 | ]
27 |
28 | str_default_path = os.getcwd() + '/Downloads' #get path relative to SAK.py
29 | list_types_of_data = ['Trade Ticks', 'OHLC 1D', 'OHLC 60m', 'OHLC 30m', 'OHLC 15m', 'OHLC 10m', 'OHLC 5m', 'OHLC 1m']
30 | frame_load = [
31 | [psg.Text('To upload csv into database:')],
32 | [psg.Text('Select Directory:'), psg.Input(str_default_path, key='_LOAD_DIR_'), psg.FolderBrowse('Browse', target='_LOAD_DIR_')],
33 | [psg.Text('Data Type:'), psg.Combo(list_types_of_data, key='_DATA_TYPE_', size=(12,1))],
34 | [psg.Text('Number of files loaded this session:'), psg.Text('0', key='_COUNT_', font='Courier')],
35 | [psg.Button('Load', key='_LOAD_BUTTON_', disabled=True)]
36 | ]
37 |
38 | frame_fetch = [
39 | [psg.Text('To fetch data from database to directory:')],
40 | [psg.Text('Select Directory:'), psg.Input(str_default_path, key='_FETCH_DIR_'), psg.FolderBrowse('Browse', target='_FETCH_DIR_')],
41 | [psg.Text('Data Type:'), psg.Combo(['dummy 1', 'dummy 2'])],
42 | [psg.Button('Load', key='_FETCH_BUTTON_', disabled=True)]
43 | ]
44 |
45 | layout = [
46 | [psg.Frame('Connection Manager', frame_connect)],
47 | [psg.Frame('Database Loader', frame_load)],
48 | [psg.Frame('Data Fetcher', frame_fetch)],
49 | [psg.Button('Exit')]
50 | ]
51 | def main():
52 | win_mysql_allinone = psg.Window('MySQL: All Functions', layout)
53 | while True: # Event Loop
54 | event, values = win_mysql_allinone.Read()
55 | if event is None or event == 'Exit':
56 | win_mysql_allinone.Close()
57 | break
58 | if event == 'Connect':
59 | str_host = str(values['_HOST_'])
60 | str_user = str(values['_USER_'])
61 | str_pass = str(values['_PWRD_'])
62 | str_dbas = str(values['_DBAS_'])
63 | try:
64 | engine = sqlalchemy.create_engine('mysql+pymysql://'+str_user+':'+str_pass+'@'+str_host+'/' + str_dbas)
65 | connection = engine.raw_connection()
66 | win_mysql_allinone.FindElement('_OUTPUT_').update(value=str(engine.url), text_color='blue')
67 | logging.info('DBase connected: mysql+pymysql://'+str_user+':***'+'@'+str_host+'/' + str_dbas)
68 | win_mysql_allinone.FindElement('_LOAD_BUTTON_').update(disabled=False)
69 | #win_mysql_allinone.FindElement('_FETCH_BUTTON_').update(disabled=False) uncomment when fetch() is finished.
70 | except sqlalchemy.exc.SQLAlchemyError as err:
71 | logging.error(str(err))
72 | psg.popup(str(err))
73 |
74 | if event == 'Disconnect':
75 | logging.info('DBase disconnected.')
76 | connection.close()
77 | win_mysql_allinone.FindElement('_OUTPUT_').update(value='Disconnected.', text_color='red')
78 | win_mysql_allinone.FindElement('_LOAD_BUTTON_').update(disabled=True)
79 | win_mysql_allinone.FindElement('_FETCH_BUTTON_').update(disabled=True)
80 |
81 | if event == 'Load':
82 | str_path = str(values['_LOAD_DIR_'])
83 | intCounter = 0
84 | #['Trade Ticks', 'OHLC 1D', 'OHLC 60m', 'OHLC 30m', 'OHLC 15m', 'OHLC 10m', 'OHLC 5m', 'OHLC 1m']
85 | if values['_DATA_TYPE_'] == 'Trade Ticks':
86 | for filepath in glob.iglob(str_path):
87 | dfToInsert = pd.read_csv(filepath)
88 | dfToInsert = dfToInsert.drop(columns=['exchange', 'currency', 'dataType'])
89 | c1 = ['time', 'symbol', 'price', 'size']
90 | c2 = dfToInsert.columns.to_list()
91 | if c1 == [x for x in c1 if x in c2]:
92 | dfToInsert.to_sql('tbl_tick_data', if_exists='append', con=engine, index=False)
93 | intCounter+=1
94 | print('{} - Uploaded {}.'.format(intCounter, dfToInsert.iloc[0,1]))
95 | win_mysql_allinone['_COUNT_'].Update(value=str(intCounter))
96 | else:
97 | psg.popup('File not in correct format: {}'.format(c1))
98 | if values['_DATA_TYPE_'] != 'Trade Ticks':
99 | for filepath in glob.iglob(str_path):
100 | dfToInsert = pd.read_csv(filepath)
101 | str_tbl_name = 'tbl_ohlcv_'+ str(values['_DATA_TYPE_'])[-2:].lower()
102 | c1 = ['symbol', 'date', 'open', 'high', 'low', 'close', 'volume']
103 | c2 = dfToInsert.columns.to_list()
104 | if c1 == [x for x in c1 if x in c2]:
105 | dfToInsert.to_sql(str_tbl_name, if_exists='append', con=engine, index=False)
106 | intCounter+=1
107 | print('{} - Uploaded {}.'.format(intCounter, dfToInsert.iloc[0,1]))
108 | win_mysql_allinone.FindElement('_COUNT_').Update(value=str(intCounter))
109 | else:
110 | psg.popup('File not in correct format: {}'.format(c1))
111 | psg.popup(str_path)
112 |
113 | if event == 'Fetch':
114 | str_path = str(values['_FETCH_DIR_'])
115 | psg.popup(str_path)
116 |
117 |
--------------------------------------------------------------------------------
/SAKModules/SAK_NSEOptionChainExtractor.py:
--------------------------------------------------------------------------------
1 | import PySimpleGUI as psg
2 | import time
3 | import datetime
4 | import requests
5 | import pandas as pd
6 | import sqlalchemy
7 | import re
8 | import sys
9 | from pathlib import Path
10 |
11 | list_identifiers = [{"code":17, "symbol":"NIFTY","instr":"index"},
12 | {"code":17, "symbol":"BANKNIFTY","instr":"index"},
13 | {"code":17, "symbol":"NIFTYINFRA","instr":"index"},
14 | {"code":17, "symbol":"NIFTYIT","instr":"index"},
15 | {"code":17, "symbol":"NIFTYMID50","instr":"index"},
16 | {"code":17, "symbol":"S%26P500","instr":"index"},
17 | {"code":17, "symbol":"FTSE100","instr":"index"},
18 | {"code":17, "symbol":"NIFTYCPSE","instr":"index"},
19 | {"code":242, "symbol":"RELIANCE", "instr":"stock"},
20 | {"code":238, "symbol":"SBIN", "instr":"stock"},
21 | {"code":1606, "symbol":"ICICIBANK", "instr":"stock"},
22 | {"code":1693, "symbol":"AXISBANK", "instr":"stock"},
23 | {"code":2143, "symbol":"MARUTI", "instr":"stock"},
24 | {"code":180, "symbol":"INFY", "instr":"stock"},
25 | {"code":2328, "symbol":"SUZLON", "instr":"stock"},
26 | {"code":818, "symbol":"ITC", "instr":"stock"},
27 | {"code":2009, "symbol":"PNB", "instr":"stock"},
28 | {"code":211, "symbol":"TATAMOTORS", "instr":"stock"},
29 | {"code":2143, "symbol":"MARUTI", "instr":"stock"},
30 | {"code":797, "symbol":"HDFCBANK", "instr":"stock"},
31 | {"code":3691, "symbol":"COALINDIA", "instr":"stock"},
32 | {"code":679, "symbol":"M%26M", "instr":"stock"},
33 | {"code":2249, "symbol":"NTPC", "instr":"stock"},
34 | {"code":2749, "symbol":"BAJAJFINSV", "instr":"stock"},
35 | {"code":233, "symbol":"TITAN", "instr":"stock"},
36 | {"code":234, "symbol":"TATASTEEL", "instr":"stock"},
37 | {"code":818, "symbol":"ITC", "instr":"stock"},
38 | {"code":2660, "symbol":"POWERGRID", "instr":"stock"},
39 | {"code":1594, "symbol":"GAIL", "instr":"stock"},
40 | {"code":854, "symbol":"IOC", "instr":"stock"},
41 | {"code":199, "symbol":"BPCL", "instr":"stock"},
42 | {"code":221, "symbol":"HINDPETRO", "instr":"stock"},
43 | {"code":467, "symbol":"ONGC", "instr":"stock"}
44 | ]
45 |
46 | list_selected = []
47 |
48 | dict_urls = {
49 | "index":
50 | [
51 | "https://nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=",
52 | "&instrument=OPTIDX&symbol=",
53 | "&date="
54 | ],
55 | "stock":
56 | [
57 | "https://nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?symbolCode=",
58 | "&symbol=",
59 | "&date="
60 | ]
61 | }
62 |
63 | list_crawl_frequency = [5, 10, 15, 30]
64 |
65 | str_help_text = "STEP 1: Load symbols from listbox on the left to the listbox on the right. \
66 | STEP 2: Click validate.\
67 | STEP 3: Select checkbox. Crawling will happen in N minute intervals. \
68 | Between crawls, you may de-select the checkbox to pause.\
69 | While running the window will freeze."
70 |
71 | layout = [
72 | [
73 | psg.Listbox(values=[item['symbol'] for item in list_identifiers], size=(30, 6), key="_LIST_ALL_SYM_"),
74 | psg.Button(">>>", key="_ADD_"),
75 | psg.Button("<<<", key="_REMOVE_"),
76 | psg.Listbox(values=list_selected, size=(30, 6), key="_LIST_CHOSEN_SYM_")
77 | ],
78 | [
79 | psg.Text("Inactive", key="_INDICATOR_"),
80 | psg.Checkbox('', key="_LIVE_", default=False, size=(5,1), disabled=True),
81 | psg.Combo(list_crawl_frequency, key="_FREQ_", size=(5,1)),
82 | psg.Button("Validate", key="_VALIDATE_")
83 | ],
84 | [psg.Output(size=(80,20))],
85 | [psg.Button("Help Text"), psg.Button("Close")]
86 | ]
87 |
88 | def fetchData(final_url, str_symbol, secType, matDate):
89 | #INPUT: nseindia.com option chain URL ('https://nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=17&instrument=OPTIDX&symbol=BANKNIFTY&date=23AUG2018')
90 | #INPUT: string security type: "stock" or "index"
91 | #OUTPUT: returns pandas dataframe with scraped table
92 | while True:
93 | try:
94 | page = requests.get(final_url)
95 | except requests.exceptions.ConnectionError: #in case there's a connection error:
96 | print(datetime.datetime.now().strftime("[%H:%M:%S]") + " ConnectionError in fetchAndInsert(). Retrying in 15s.")
97 | time.sleep(15) #wait 15 seconds and try again
98 | continue
99 | break
100 | page.status_code
101 | page.content
102 | try:
103 | y = pd.read_html(page.content)[0][[1]]
104 | except ValueError as e:
105 | #in case no table is found
106 | print(datetime.datetime.now().strftime("[%H:%M:%S]") + str(e))
107 | pass
108 | y=y.to_string()
109 |
110 | #handle stock/index differently
111 | if (secType == "index"):
112 | assetValue = y[y.find("Index: ")+7:y.find(" As on")]
113 | asset = str_symbol
114 | assetValue = ''.join([str(elem) for elem in re.findall('[0-9.]',assetValue)])
115 | if (secType == "stock"):
116 | assetValue = y[y.find("Stock: ")+7:y.find(" As on")]
117 | asset = str_symbol
118 | assetValue = ''.join([str(elem) for elem in re.findall('[0-9.]',assetValue)])
119 | crawlTimeStamp = datetime.datetime.now().isoformat(' ')
120 |
121 | #take the entire page into 3 dataframes, pick the middle one since it has the table
122 | raw_table = pd.read_html(page.content)[1]
123 |
124 | #give names to all the columns. Note that there are duplicates
125 | raw_table.columns = ['Chart','OI','Chng in OI','Volume','IV','LTP','Net Chng','BidQty','BidPrice','AskPrice','AskQty','Strike Price','BidQty','BidPrice','AskPrice','AskQty','Net Chng','LTP','IV','Volume','Chng in OI','OI','Chart']
126 |
127 | #drop the top two rows as they are not needed
128 | raw_table=raw_table.drop(raw_table.index[[0,1]])
129 | #replace all dashes with zeroes
130 | x = raw_table.replace(to_replace="-", value=0.0)
131 | #drop the "chart" columns. Since names are duplicated, giving one column name drops both columns with the shared name
132 | #here "1" means Columns Axis.
133 | x=x.drop('Chart',1)
134 | #convert all cells in dataframe to numerical data format
135 | x.apply(pd.to_numeric, errors='ignore')
136 | #rename all columns so that there are no duplicates
137 | x.columns=['CALL_OI', 'CALL_ChngInOI', 'CALL_Volume', 'CALL_IV', 'CALL_LTP', 'CALL_NetChng', 'CALL_BidQty', 'CALL_BidPrice', 'CALL_AskPrice', 'CALL_AskQty', 'StrikePrice', 'PUT_BidQty', 'PUT_BidPrice', 'PUT_AskPrice', 'PUT_AskQty', 'PUT_NetChng', 'PUT_LTP', 'PUT_IV', 'PUT_Volume', 'PUT_ChngInOI', 'PUT_OI']
138 | #add columns for holding:
139 | x['Underlying']=asset #symbol of underlying
140 | x['UnderlyingValue']=assetValue #value of underlying at time of crawl
141 | x['CrawlTimestamp']=crawlTimeStamp #time of crawl
142 | x['MaturityDate']=matDate #maturity of the option
143 |
144 | return x
145 |
146 | def data2csv(df_x, str_symbol):
147 | #INPUT: df_x dataframe with options data. last row is removed since it contains a useless summary
148 | #INPUT: str_symbol symbol of the data, which becomes the file name
149 | #OUTPUT: nothing returned. If file exists, data is appended without headers, otherwise with headers
150 | df_x=df_x[:-1]
151 | if Path(str_symbol+".csv").is_file():
152 | with open(str_symbol+".csv", 'a') as f:
153 | df_x.to_csv(f, header=False)
154 | else:
155 | with open(str_symbol+".csv", 'a') as f:
156 | df_x.to_csv(f, header=True)
157 |
158 | def getMatDateList(base_url):
159 | #INPUT: nseindia.com option chain URL ('https://nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=17&instrument=OPTIDX&symbol=BANKNIFTY')
160 | #OUTPUT: [n,1] list of strings of the format DDMMMYYYY ('30AUG2018')
161 | while True:
162 | try:
163 | page = requests.get(base_url)
164 | except requests.exceptions.ConnectionError: #in case there's a connection error:
165 | print(datetime.datetime.now().strftime("[%H:%M:%S]") + " ConnectionError in getMatDateList(). Retrying in 15s.")
166 | time.sleep(15) #wait 15 seconds and try again
167 | continue
168 | break
169 | content=page.text
170 | x1=content.find('')
171 | x2=content.find('', x1)
172 | rawlist=content[x1:x2]
173 | datelist=re.findall('[0-9]{2}[A-Z]{3}[0-9]{4}', rawlist)
174 | datelist=list(set(datelist))
175 | print("base url: ", base_url)
176 | print("datelist: ",datelist)
177 | return datelist
178 |
179 | def zip_url2(l_select, l_id, d_url):
180 | #INPUT: l_select - [1,N] list of NSE symbols
181 | #INPUT: l_id - [1,N] list of dictionaries like {"code":, "symbol":, "instr":}
182 | #INPUT: dictionary listing URL fragments {:[]}
183 | #OUTPUT: l_id zipped with fragments from d_url, and base url appended as 'url', filtered for l_select symbols
184 | for d in l_id:
185 | if d['instr']=="stock":
186 | d['url_fragment'] = dict_urls['stock']
187 | d['base_url']=dict_urls['stock'][0] + str(d['code']) +dict_urls['stock'][1] + d['symbol']
188 | if d['instr']=="index":
189 | d['url_fragment']=dict_urls["index"]
190 | d['base_url']=dict_urls['index'][0] + str(d['code']) +dict_urls['index'][1] + d['symbol']
191 | print("zip url: ",[item for item in list_identifiers if item['symbol'] in l_select])
192 | return [item for item in list_identifiers if item['symbol'] in l_select]
193 |
194 | def zip_url(l_select, l_id):
195 | #INPUT: l_select - [1,N] list of NSE symbols
196 | #INPUT: l_id - [1,N] list of dictionaries like {"code":, "symbol":, "instr":}
197 | #INPUT: dictionary listing URL fragments {:[]}
198 | #OUTPUT: l_id zipped with fragments from d_url, and base url appended as 'url', filtered for l_select symbols
199 | for d in l_id:
200 | if d['instr']=="stock":
201 | d['base_url']="https://www.nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?symbol=" + d['symbol']
202 | if d['instr']=="index":
203 | d['base_url']="https://nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=17&instrument=OPTIDX&symbol=" + d['symbol']
204 | print("zip url: ",[item for item in list_identifiers if item['symbol'] in l_select])
205 | return [item for item in list_identifiers if item['symbol'] in l_select]
206 |
207 | def main():
208 | window_NSEOCE = psg.Window("NSE Option Chain Extractor", layout)
209 | while True:
210 | event, values = window_NSEOCE.Read(timeout=100)
211 | int_frequency = window_NSEOCE.Element('_FREQ_').Get()
212 | if event in (None, 'Close'): # if user closes window or clicks cancel
213 | window_NSEOCE.Close()
214 | break
215 |
216 | if event =="Help Text":
217 | print(str_help_text)
218 |
219 | if event == '_ADD_':
220 | try:
221 | if values["_LIST_ALL_SYM_"][0] not in list_selected:
222 | list_selected.append(values["_LIST_ALL_SYM_"][0])
223 | window_NSEOCE.Element("_LIST_CHOSEN_SYM_").Update(values=list_selected)
224 | else:
225 | psg.popup("The symbol has already been selected.")
226 | values["_LIST_CHOSEN_SYM_"] = list_selected
227 | except (ValueError,IndexError):
228 | psg.popup("Nothing selected!")
229 |
230 | if event == '_REMOVE_':
231 | try:
232 | list_selected.remove(values["_LIST_CHOSEN_SYM_"][0])
233 | window_NSEOCE.Element("_LIST_CHOSEN_SYM_").Update(values=list_selected)
234 | except (ValueError,IndexError):
235 | psg.popup("Nothing selected!")
236 |
237 | if event == '_VALIDATE_':
238 | str_mat = "&date="
239 | #l_id = zip_url2(list_selected, list_identifiers, dict_urls)
240 | l_id = zip_url(list_selected, list_identifiers)
241 | for item in l_id:
242 | item['mats'] = getMatDateList(item['base_url'])
243 | item['final_url']=[]
244 | for mat in item['mats']:
245 | item['final_url'] += [item['base_url'] + str_mat + mat]
246 | print(l_id)
247 | print([item['final_url'] for item in l_id])
248 | window_NSEOCE.Element('_LIVE_').Update(disabled=False)
249 |
250 | if values['_LIVE_']==False:
251 | window_NSEOCE.Element('_INDICATOR_').Update(value="Inactive", text_color="red")
252 |
253 | if values['_LIVE_']==True:
254 | window_NSEOCE.Element('_INDICATOR_').Update(value="Active", text_color="green")
255 | if datetime.datetime.now().minute % int(int_frequency) == 0:
256 | print(datetime.datetime.now())
257 | for item in l_id:
258 | str_sym = item['symbol']
259 | for i in range(0,len(item['mats'])):
260 | str_mat = item['mats'][i]
261 | secType = item['instr']
262 | data2csv(fetchData(item['final_url'][i],str_sym, secType , str_mat), str_sym)
263 | print("Finished for symbol: {}, for maturity: {}".format(str_sym, str_mat))
264 | time.sleep(60)
265 |
266 | if __name__ == "__main__":
267 | main()
268 |
--------------------------------------------------------------------------------
/SAKModules/UPSTOX_Connect_Window.py:
--------------------------------------------------------------------------------
1 | from upstox_api.api import *
2 | import PySimpleGUI as sg
3 | import logging
4 | from secret import cred
5 | logging.basicConfig(
6 | filename='connection_window.log',
7 | level=logging.INFO,
8 | format='{"time": %(asctime)s, "module": %(module)s, "function_name": %(funcName)s, "line_number": %(lineno)d, "message": %(message)s}',
9 | datefmt='%m/%d/%Y %I:%M:%S %p'
10 | )
11 |
12 | layout = [
13 | [sg.Text('Window area.')],
14 | [sg.Input(cred.upstox_api_key, key='_API_Key_'), sg.Input(cred.upstox_api_secret, key='_API_Secret_'), sg.Input('', key='_Redirect_URI_')],
15 | [sg.Text('xxxx URL Appears Here xxxx', key='_OUTPUT_')],
16 | [sg.Button('Connect'), sg.Button('Disconnect'), sg.Button('Exit')]
17 | ]
18 |
19 | def main(up_session):
20 | win_upstox_connect = sg.Window('UPSTOX: Connect', layout)
21 | logging.info("UPSTOX:Connect launched")
22 |
23 | while True: # Event Loop
24 | event, values = win_upstox_connect.Read()
25 | if event == 'Exit':
26 | logging.info("exit hit")
27 | win_upstox_connect.Close()
28 | break
29 |
30 | if event == 'Connect':
31 | logging.info("Asked to connect.")
32 | try:
33 | logging.info("Trying to connect.")
34 | logging.info("%s %s %s",
35 | str(win_upstox_connect.Element('_API_Key_').Get()),
36 | str(win_upstox_connect.Element('_API_Secret_').Get()),
37 | str(win_upstox_connect.Element('_Redirect_URI_').Get())
38 | )
39 | up_session = Session(win_upstox_connect.Element('_API_Key_').Get())
40 | up_session.set_redirect_uri (win_upstox_connect.Element('_Redirect_URI_').Get())
41 | up_session.set_api_secret (win_upstox_connect.Element('_API_Secret_').Get())
42 | str_url = str(up_session.get_login_url())
43 | win_upstox_connect.Element('_OUTPUT_').Update(str_url)
44 | up_code = sg.PopupGetText(
45 | message='Open this link and do the needful to get the "code" from the browser.',
46 | default_text=str_url,
47 | title='UPSTOX: Code'
48 | )
49 | up_session.set_code(up_code)
50 | cred.upstox_api_token = up_session.retrieve_access_token()
51 | win_upstox_connect.Element('_OUTPUT_').Update("Close window to continue.")
52 | except:
53 | win_upstox_connect.Element('_OUTPUT_').Update("Error!")
54 | logging.info("Error!")
55 |
56 |
57 | if __name__ == "__main__":
58 | from upstox_api.api import Session
59 | up_session = Session('dummy_key')
60 | main(up_session)
--------------------------------------------------------------------------------
/SAKModules/help.txt:
--------------------------------------------------------------------------------
1 | **Project Structure:**
2 |
3 | SwissAlgoKnife
4 | |-SwissAlgoKnife.py
5 | |-SAKModules
6 | |-IBKRAllinone.py
7 | |-MySQL_Allinone.py
8 | |-IBKR_Connect_Window.py
9 | |-IBKR_Historical_Window.py
10 | |-IBKR_Tick_Data_Window.py
11 | |-ALPACA_Connect.py
12 | |-UPSTOX_Connect_Window.py
13 | |-__pycache__
14 | |-Secret
15 | |-Cred.py
16 | |-Downloads
17 | |-
18 | |-__pycache__
19 |
20 | **Description of files**
21 |
22 | -SwissAlgoKnife.py - just an entry point to the application.
23 | -SAKModules - Folder containing all utilities. Each utility is designed to also be a standalone file.
24 | -IBKRAllinone.py - All IBKR functions in one file: Connect, get OHLC Data, get Tick Data
25 | -MySQL_Allinone.py - All IBKR functions in one file: Connect, store OHLC Data, store Tick Data. Retrieval function WIP.
26 | -IBKR_Connect_Window.py - older window. To connect to IBKR.
27 | -IBKR_Historical_Window.py - older window. To get OHLC Data.
28 | -IBKR_Tick_Data_Window.py - older window. To get tick Data.
29 | -ALPACA_Connect.py - WIP.
30 | -UPSTOX_Connect_Window.py - frozen due to Upstox discontinuing API.
31 | -__pycache__ - don't touch.
32 | -Secret - folder for credential files
33 | -Cred.py - file containing credentials for all APIs in one place.
34 | -Downloads - folder for all downloaded files across utilities.
35 | -__pycache__ - don't touch.
--------------------------------------------------------------------------------
/SAK_Transparent.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/algonitish/SwissAlgoKnife/0df5dba744a19ac689e5492e1353d51271d65c96/SAK_Transparent.ico
--------------------------------------------------------------------------------
/SwissAlgoKnife.py:
--------------------------------------------------------------------------------
1 | import os
2 | import PySimpleGUI as sg
3 |
4 |
5 | def getFileList():
6 | l = [f[:-3] for f in os.listdir(os.getcwd()+'/SAKModules') if '.py' in f]
7 | l.sort()
8 | return l
9 | col =[
10 | [sg.Image(os.getcwd()+'/SAK_none.png')],
11 | [sg.Button('Launch', size=(12,1))]
12 | ]
13 | layout = [
14 | [sg.Listbox(getFileList(), size=(25,16), key='_LB_'), sg.Column(col)],
15 | [sg.Button('Exit')]
16 | ]
17 |
18 | win_SAK = sg.Window('Swiss Algo Knife').Layout(layout)
19 |
20 | while True: # Event Loop
21 | event, values = win_SAK.Read()
22 | if event is None or event == 'Exit':
23 | break
24 | if event == 'Launch':
25 | try:
26 | exec(open(os.getcwd()+'/SAKModules/'+values["_LB_"][0]+".py").read())
27 | except (ValueError,IndexError):
28 | sg.popup("Nothing selected!")
29 |
30 | win_SAK.Close()
31 |
--------------------------------------------------------------------------------
/secret/.gitignore:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/secret/cred.py:
--------------------------------------------------------------------------------
1 | upstox_api_token =''
2 | upstox_api_redirect_uri =''
3 | upstox_api_secret =''
4 | upstox_api_key =''
5 |
6 | APCA_API_KEY_ID = ''
7 | APCA_API_SECRET_KEY = ''
8 | APCA_API_BASE_URL = ''
9 | APCA_API_DATA_URL = ''
10 |
11 | str_ib_ip = '127.0.0.1'
12 | int_ib_port = 7497
13 | int_ib_uid = 101
14 |
15 | str_mysql_host = 'localhost'
16 | str_mysql_database = ''
17 | str_mysql_user = ''
18 | str_mysql_password = ''
--------------------------------------------------------------------------------