iqoptionapi
iqoptionapi copied to clipboard
IQ Option API 4.x (Python 2.7) The project is obsolete and is not supported because of problems with access to IQ Options in Russia
it can work on python3.6.5 https://github.com/Lu-Yi-Hsun/iqoptionapi
How to buy a position on 15 min ( binary no turbo ) ?
During starting below code: ``` from iqoptionapi.api import IQOptionAPI import datetime import time import logging logging.basicConfig(format='%(asctime)s %(message)s') api = IQOptionAPI("iqoption.com", "[email protected]", "s3cr3tPassw0rd") api.connect() time.sleep(0.5) print 'Your current balance is: {:.2f}'.format(api.profile.balance)...
How to trade in forex and CFD's ? What will be the constants for them? OR How the constants for binary trade were obtained initially? Please reply... thanks
Hello guys, someone can help me to use this api on windows? Thanks
Hello, please help, here is my code: import time from iqoptionapi.api import IQOptionAPI if __name__ == '__main__': api = IQOptionAPI("iqoption.com", "MyUsername", "MyPassword") api.connect() time.sleep(1) api.setactives([1, 2]) api.getcandles(1, 60, 25) time.sleep(1)...
The installation means provided in readme.md are out of date.
A huge update was recently launched by IQO. The API needs updating too... For what I can see, there's new currency pairs, new functions, something else too probs.
something changed. no more candles data :( i dont know what. any patch for this???? for me write error Traceback (most recent call last): File "C:\iqoptionbot\bot_data.py", line 22, in for...
Hello @n1nj4z33, The API is very good thanks. Is there a possibility to get indicators as you get the candles? I tried to calculate few of them by my self...