Trrb bot is a Python software to automate IQ Option inputs through scraping and analysis of the trader room indicators.
OBS: This project is a proof of concept. All methods of the class ROBO need to be refactored and have their responsibilities redistributed
You must have python installed version 3.7 or higher
Just install all with:
'''
pip install -r requirements.txt
from robo import Robo
from userdata import email,password
import logging
id = 'name_of_your_bot_teste'
asset = 'EURUSD'
value = 1
minutes = 1
if __name__ == "__main__":
Iq = Robo(id, email, password, asset, value, minutes)
Put your email and password in the userdata.py to IQ OPTION login like this:
email = '[email protected]'
password = 'your_password
To execute the project the way it is:
python main.py
Fazer rodar ✔️ Refatorar Adicionar testes Configurar modo PRATICE/REAL Adicionar DB
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.