├── .gitignore ├── .idea ├── .gitignore ├── .name ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml ├── vavabot_options_strategy.iml └── vcs.xml ├── LEIA_ME.txt ├── LICENSE.txt ├── README.md ├── README.txt ├── connection_strategy.py ├── green_led_icon.png ├── gui_strategy.py ├── icon_noctuline_wall_e_eve.ico ├── img ├── img1.PNG ├── img2.PNG ├── img3.PNG ├── img4.PNG ├── img5.PNG ├── img6.PNG └── img7.PNG ├── lists.py ├── pyinstaller.py ├── red_led_icon.png ├── requirements.txt └── vavabot_options_strategy_10_0.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | 5 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | vavabot_options_strategy -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vavabot_options_strategy.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/.idea/vavabot_options_strategy.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LEIA_ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/LEIA_ME.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/README.txt -------------------------------------------------------------------------------- /connection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/connection_strategy.py -------------------------------------------------------------------------------- /green_led_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/green_led_icon.png -------------------------------------------------------------------------------- /gui_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/gui_strategy.py -------------------------------------------------------------------------------- /icon_noctuline_wall_e_eve.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/icon_noctuline_wall_e_eve.ico -------------------------------------------------------------------------------- /img/img1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img1.PNG -------------------------------------------------------------------------------- /img/img2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img2.PNG -------------------------------------------------------------------------------- /img/img3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img3.PNG -------------------------------------------------------------------------------- /img/img4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img4.PNG -------------------------------------------------------------------------------- /img/img5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img5.PNG -------------------------------------------------------------------------------- /img/img6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img6.PNG -------------------------------------------------------------------------------- /img/img7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/img/img7.PNG -------------------------------------------------------------------------------- /lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/lists.py -------------------------------------------------------------------------------- /pyinstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/pyinstaller.py -------------------------------------------------------------------------------- /red_led_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/red_led_icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/requirements.txt -------------------------------------------------------------------------------- /vavabot_options_strategy_10_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vavarb/vavabot_options_strategy/HEAD/vavabot_options_strategy_10_0.py --------------------------------------------------------------------------------