⬡ FREE DOWNLOAD · OPEN SOURCE

Download a real trading bot — commented line by line.

Python and MQL5 code, risk management spreadsheet and upcoming tutorials by email. No easy-profit promises. Just the material we wish we had when starting out.

robo_exemplo.py
# Sample bot — moving average crossover # MIT License · use, adapt, share import MetaTrader5 as mt5 import pandas as pd def sinal(df): df['ma_short'] = df['close'].rolling(9).mean() df['ma_long'] = df['close'].rolling(21).mean() if df['ma_short'].iloc[-1] > df['ma_long'].iloc[-1]: return 'buy' return 'sell' def executar(): mt5.initialize() rates = mt5.copy_rates_from_pos(...)

What comes in the package

📄 robo_exemplo.pyPython + MT5
📄 robo_exemplo.mq5Native MQL5
📊 risk-management.xlsxSpreadsheet
📕 installation-guide.pdfStep by step

Get it in your email.

Enter your best email and we'll send the complete package + upcoming tutorials (1 per week, no spam).

  • Commented bot in Python and MQL5
  • Editable risk management spreadsheet
  • MT5 installation guide
  • Weekly tutorials by email

    No spam. No easy-profit promises. Cancel anytime. Privacy policy.

    +1.200downloads
    MITopen license
    0commitments
    4.8/5avg rating