├── .flake8 ├── .github ├── FUNDING.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── .travis.yml ├── ACTIVE_CODE.txt ├── LICENSE.txt ├── README.md ├── coverage.xml ├── deploy.sh ├── docs ├── account │ └── account.md ├── all │ ├── all.md │ └── image │ │ └── top_assets_updated.png ├── binary option │ ├── binary option.md │ └── expiration_time.png ├── candle │ ├── candle.md │ └── image │ │ └── time_interval.png ├── digital │ ├── digital.md │ └── image │ │ ├── near.png │ │ ├── profit_after_sale.png │ │ └── spot.png ├── fef │ ├── fef.md │ ├── image │ │ ├── cancel_order.png │ │ ├── change_ID_Name_order_id.png │ │ ├── change_ID_Name_position_id.png │ │ ├── close_position.png │ │ ├── get_pending.png │ │ ├── get_position.png │ │ ├── get_position_history.png │ │ └── get_positions.png │ └── instrument.txt ├── image │ └── icon │ │ ├── brain.png │ │ ├── iq.ico │ │ └── mars.png ├── index.md └── javascripts │ ├── .Rhistory │ └── extra.js ├── ejtraderIQ ├── __init__.py ├── api.py ├── constants.py ├── country_id.py ├── easyapi.py ├── expiration.py ├── global_value.py ├── http │ ├── __init__.py │ ├── appinit.py │ ├── auth.py │ ├── billing.py │ ├── buyback.py │ ├── changebalance.py │ ├── events.py │ ├── getprofile.py │ ├── getregdata.py │ ├── login.py │ ├── loginv2.py │ ├── logout.py │ ├── profile.py │ ├── register.py │ ├── resource.py │ └── token.py ├── stable_api.py └── ws │ ├── __init__.py │ ├── chanels │ ├── __init__.py │ ├── api_game_betinfo.py │ ├── api_game_getoptions.py │ ├── base.py │ ├── buy_place_order_temp.py │ ├── buyback.py │ ├── buyv2.py │ ├── buyv3.py │ ├── cancel_order.py │ ├── candles.py │ ├── change_auto_margin_call.py │ ├── change_tpsl.py │ ├── changebalance.py │ ├── close_position.py │ ├── digital_option.py │ ├── get_available_leverages.py │ ├── get_balances.py │ ├── get_deferred_orders.py │ ├── get_financial_information.py │ ├── get_order.py │ ├── get_overnight_fee.py │ ├── get_positions.py │ ├── heartbeat.py │ ├── instruments.py │ ├── leaderboard.py │ ├── sell_option.py │ ├── setactives.py │ ├── ssid.py │ ├── strike_list.py │ ├── subscribe.py │ ├── traders_mood.py │ ├── unsubscribe.py │ └── user.py │ ├── client.py │ └── objects │ ├── __init__.py │ ├── base.py │ ├── betinfo.py │ ├── candles.py │ ├── listinfodata.py │ ├── profile.py │ └── timesync.py ├── examples └── mhi-martingaleBot.py ├── image ├── 83521925_616885489131244_2922459279078195200_n.jpg ├── asset_close.png ├── cancel_order.png ├── change_ID_Name_order_id.png ├── change_ID_Name_position_id.png ├── close_position.png ├── expiration_time.png ├── get_pending.png ├── get_position.png ├── get_position_history.png ├── get_positions.png ├── profit_after_sale.png └── time_interval.png ├── instrument.txt ├── old_document.md ├── pylint.rc ├── pylintrc ├── pylintrcconda ├── requirements.txt ├── setup.py ├── test.ipynb └── tests ├── __init__.py ├── iq.py ├── test_Binary_Option.py ├── test_Candle.py └── test_Login.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | build/ 3 | dist/ 4 | *.egg-info/ 5 | .vscode/ 6 | test.py 7 | 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACTIVE_CODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ACTIVE_CODE.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/README.md -------------------------------------------------------------------------------- /coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/coverage.xml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/deploy.sh -------------------------------------------------------------------------------- /docs/account/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/account/account.md -------------------------------------------------------------------------------- /docs/all/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/all/all.md -------------------------------------------------------------------------------- /docs/all/image/top_assets_updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/all/image/top_assets_updated.png -------------------------------------------------------------------------------- /docs/binary option/binary option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/binary option/binary option.md -------------------------------------------------------------------------------- /docs/binary option/expiration_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/binary option/expiration_time.png -------------------------------------------------------------------------------- /docs/candle/candle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/candle/candle.md -------------------------------------------------------------------------------- /docs/candle/image/time_interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/candle/image/time_interval.png -------------------------------------------------------------------------------- /docs/digital/digital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/digital/digital.md -------------------------------------------------------------------------------- /docs/digital/image/near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/digital/image/near.png -------------------------------------------------------------------------------- /docs/digital/image/profit_after_sale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/digital/image/profit_after_sale.png -------------------------------------------------------------------------------- /docs/digital/image/spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/digital/image/spot.png -------------------------------------------------------------------------------- /docs/fef/fef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/fef.md -------------------------------------------------------------------------------- /docs/fef/image/cancel_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/cancel_order.png -------------------------------------------------------------------------------- /docs/fef/image/change_ID_Name_order_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/change_ID_Name_order_id.png -------------------------------------------------------------------------------- /docs/fef/image/change_ID_Name_position_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/change_ID_Name_position_id.png -------------------------------------------------------------------------------- /docs/fef/image/close_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/close_position.png -------------------------------------------------------------------------------- /docs/fef/image/get_pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/get_pending.png -------------------------------------------------------------------------------- /docs/fef/image/get_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/get_position.png -------------------------------------------------------------------------------- /docs/fef/image/get_position_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/get_position_history.png -------------------------------------------------------------------------------- /docs/fef/image/get_positions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/image/get_positions.png -------------------------------------------------------------------------------- /docs/fef/instrument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/fef/instrument.txt -------------------------------------------------------------------------------- /docs/image/icon/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/image/icon/brain.png -------------------------------------------------------------------------------- /docs/image/icon/iq.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/image/icon/iq.ico -------------------------------------------------------------------------------- /docs/image/icon/mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/image/icon/mars.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/javascripts/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/javascripts/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/docs/javascripts/extra.js -------------------------------------------------------------------------------- /ejtraderIQ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/__init__.py -------------------------------------------------------------------------------- /ejtraderIQ/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/api.py -------------------------------------------------------------------------------- /ejtraderIQ/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/constants.py -------------------------------------------------------------------------------- /ejtraderIQ/country_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/country_id.py -------------------------------------------------------------------------------- /ejtraderIQ/easyapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/easyapi.py -------------------------------------------------------------------------------- /ejtraderIQ/expiration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/expiration.py -------------------------------------------------------------------------------- /ejtraderIQ/global_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/global_value.py -------------------------------------------------------------------------------- /ejtraderIQ/http/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for IQ Option API http resources.""" 2 | -------------------------------------------------------------------------------- /ejtraderIQ/http/appinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/appinit.py -------------------------------------------------------------------------------- /ejtraderIQ/http/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/auth.py -------------------------------------------------------------------------------- /ejtraderIQ/http/billing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/billing.py -------------------------------------------------------------------------------- /ejtraderIQ/http/buyback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/buyback.py -------------------------------------------------------------------------------- /ejtraderIQ/http/changebalance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/changebalance.py -------------------------------------------------------------------------------- /ejtraderIQ/http/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/events.py -------------------------------------------------------------------------------- /ejtraderIQ/http/getprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/getprofile.py -------------------------------------------------------------------------------- /ejtraderIQ/http/getregdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/getregdata.py -------------------------------------------------------------------------------- /ejtraderIQ/http/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/login.py -------------------------------------------------------------------------------- /ejtraderIQ/http/loginv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/loginv2.py -------------------------------------------------------------------------------- /ejtraderIQ/http/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/logout.py -------------------------------------------------------------------------------- /ejtraderIQ/http/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/profile.py -------------------------------------------------------------------------------- /ejtraderIQ/http/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/register.py -------------------------------------------------------------------------------- /ejtraderIQ/http/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/resource.py -------------------------------------------------------------------------------- /ejtraderIQ/http/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/http/token.py -------------------------------------------------------------------------------- /ejtraderIQ/stable_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/stable_api.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for IQ Option API websocket.""" 2 | -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for IQ Option API websocket chanels.""" 2 | -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/api_game_betinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/api_game_betinfo.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/api_game_getoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/api_game_getoptions.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/base.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/buy_place_order_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/buy_place_order_temp.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/buyback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/buyback.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/buyv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/buyv2.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/buyv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/buyv3.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/cancel_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/cancel_order.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/candles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/candles.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/change_auto_margin_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/change_auto_margin_call.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/change_tpsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/change_tpsl.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/changebalance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/changebalance.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/close_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/close_position.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/digital_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/digital_option.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_available_leverages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_available_leverages.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_balances.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_deferred_orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_deferred_orders.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_financial_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_financial_information.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_order.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_overnight_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_overnight_fee.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/get_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/get_positions.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/heartbeat.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/instruments.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/leaderboard.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/sell_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/sell_option.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/setactives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/setactives.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/ssid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/ssid.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/strike_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/strike_list.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/subscribe.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/traders_mood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/traders_mood.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/unsubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/unsubscribe.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/chanels/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/chanels/user.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/client.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/__init__.py: -------------------------------------------------------------------------------- 1 | """Module for IQ Option API websocket objects.""" 2 | -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/base.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/betinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/betinfo.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/candles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/candles.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/listinfodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/listinfodata.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/profile.py -------------------------------------------------------------------------------- /ejtraderIQ/ws/objects/timesync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/ejtraderIQ/ws/objects/timesync.py -------------------------------------------------------------------------------- /examples/mhi-martingaleBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/examples/mhi-martingaleBot.py -------------------------------------------------------------------------------- /image/83521925_616885489131244_2922459279078195200_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/83521925_616885489131244_2922459279078195200_n.jpg -------------------------------------------------------------------------------- /image/asset_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/asset_close.png -------------------------------------------------------------------------------- /image/cancel_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/cancel_order.png -------------------------------------------------------------------------------- /image/change_ID_Name_order_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/change_ID_Name_order_id.png -------------------------------------------------------------------------------- /image/change_ID_Name_position_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/change_ID_Name_position_id.png -------------------------------------------------------------------------------- /image/close_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/close_position.png -------------------------------------------------------------------------------- /image/expiration_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/expiration_time.png -------------------------------------------------------------------------------- /image/get_pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/get_pending.png -------------------------------------------------------------------------------- /image/get_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/get_position.png -------------------------------------------------------------------------------- /image/get_position_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/get_position_history.png -------------------------------------------------------------------------------- /image/get_positions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/get_positions.png -------------------------------------------------------------------------------- /image/profit_after_sale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/profit_after_sale.png -------------------------------------------------------------------------------- /image/time_interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/image/time_interval.png -------------------------------------------------------------------------------- /instrument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/instrument.txt -------------------------------------------------------------------------------- /old_document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/old_document.md -------------------------------------------------------------------------------- /pylint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/pylint.rc -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/pylintrc -------------------------------------------------------------------------------- /pylintrcconda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/pylintrcconda -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pylint 2 | requests 3 | websocket-client==0.56 4 | pandas 5 | dateutil -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/setup.py -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/iq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/tests/iq.py -------------------------------------------------------------------------------- /tests/test_Binary_Option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/tests/test_Binary_Option.py -------------------------------------------------------------------------------- /tests/test_Candle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/tests/test_Candle.py -------------------------------------------------------------------------------- /tests/test_Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejtraderLabs/ejtraderIQ/HEAD/tests/test_Login.py --------------------------------------------------------------------------------