Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 1.56 KB

readme.md

File metadata and controls

70 lines (48 loc) · 1.56 KB

TRRB BOOT

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

Installation

Installing requirements

You must have python installed version 3.7 or higher

Just install all with:

'''

pip install -r requirements.txt

Instantiating your own classes of bot

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)

Usage

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

Todo 📝

Fazer rodar ✔️ Refatorar Adicionar testes Configurar modo PRATICE/REAL Adicionar DB

Contributing

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.

License

MIT