Skip to main content

This module use the Metatatrader5 library to connect with the platform, the functions were adapted to make it easier

Project description

Installation

  1. Clone the repository to your local machine
  2. Create a virtual env to avoid issues between versions using python -m venv name_env
  3. Activate virtual env and run pip install -r requirements.txt
  4. Go to the examples section and modify the .env file with your own data to start interacting with MT5.

Note: You need to have a terminal of Metatrader 5 in your computer to work.

Introduction

This module use the Metatatrader5 library to connect with the platform, the functions were adapted to launch operations with own parameters and conditions.To know more information about the functions of Metatrade 5, please refer the next documentation:
https://www.mql5.com/en/docs/integration/python_metatrader5

Next you can read more about each function and how to implement it.

MT5

This class is a wrapper for the MT5 library that contains all related methods to interact with Metatrader 5 such as:

  • Create Connection
  • Retrieve data
  • Open Trades
  • Close Trades
  • Get Account Info
  • Constructor Method

    Create an object to enable the connection with MT5

    Parameters

    1. User (int) --> Account Id
    2. Password (str) --> Password of the Account
    3. Server (str) --> Server of the Account

    Example:

    user = 12345
    password = "passwd123"
    server = "MetaQuotes-Demo"
    conn = MT5(user,password,server)
    

    Note: By default the contructor method call the start method to start the connection to the MT5 server which will open the terminal of MT5.

    start()

    Create a connection to the Metatrader 5 server.

    Example:

    conn.start()
    

    close()

    Close the connection to Metatrader5 server.

    Example:

    conn.close()
    

    account_details(show=0)

    Return an object of type AccountInfo from Metatrader 5 library that contains all the information related to the account.

    Note: If you want to print the info pass 1 as and argument.

    Example:

    # Display object with attributes
    conn.account_details(1)
    

    # Save balance into a variable
    balance = conn.account_details().balance
    

    display_symbols(keyword,spread=30)

    Parameters

    1. keyword (list) --> Keywords to match the symbols.
    2. spread (int) --> Maximum value of spread of the symbols.

    The method will return a DataFrame with most relevant data of the symbols that satisfy the criteria..

    Example:

    # Filter the symbols that contains "EUR" or "USD" and the spread value is less than 30
    symbols = conn.display_symbols(["EUR","USD"],30)    
    

    open_position(symbol,operation,lot,points=40,comment="Python")

    Parameters

    1. symbol (str) --> Name of the symbol exactly as in the broker appears
    2. operation (int) --> BUY(1) / SELL(0)
    3. lot (int) --> Size of the operation to open
    4. points (int) or (list)
      • a) Number of points to set the SL and TP from the entry price. This will follow 1:1 ratio.
        b) [SL,TP] a list with the specific values of the price where the SL and TP should be set.
    5. comment: Comment displayed in the MT5 console.

    This method create and send a request to execute the position with the input parameters.

    Note: Use the display_symbols() to retrive the right name of the symbol.

    Example:

    SELL 0.2 lots in EURUSD with 40 points as SL/TP

    order_id = conn.open_position("EURUSD",0,0.2,40,"This trade was executed from my code")    
    

    get_positions(symbol=None)

    Parameters

    1. symbol (str) --> Get trades info exclusively of the symbol passed

    Returns a pandas dataframe with trades open if exists.

    Example:

    df = conn.get_positions()   
    

    close_position(ticket, comment="Close", display=False)

    Parameters

    1. ticket (int) --> Ticket number of the trade to close
    2. comment (str) --> Comment to add to the order.

    This method create and send the request to close the position with passed args.

    Examples:

    ticket_id = 12345
    
    conn.close_position(ticket_id,"Trade closed from my code")  
    

    get_data(symbol, temp, n_periods, plot=0)

    Parameters

    1. symbo (str) --> Name of the symbol
    2. temp (str) --> TimeFrame to get data (M1,M3,H1, etc)
    3. n_periods (int) --> Number of bars to get from current time (Current time - n_periods)
    4. plot (int) --> Display a chart in japanese format
        1 - Plot the DataFrame
        0 - Only returns the DataFrame (default)

    Example:

    Return a dataFrame with the last 100 min and plot it.

    data_from_n_periods = MT5.get_data("EURUSD","M1",100,1)      
    

    To check the correct timeframes print the next code:

    print(MT5.timeframes)
    

    In this example the name of the stock was manually passed, remember use the aproppiate method to extract the name exactly as the broker to avoid errors.

    calculate_profit(symbol,points,lot,order)

    Parameters

    1. symbol:Name of the symbol --> str
    2. points: Number of points to calculate the profit/loss --> int
    3. lots: Size of the simulated trade --> float/int
    4. order: BUY (1) or SELL (0) --> int

    This method allow you to calculte the profit or loss without need to open trades.

    Examples

    Profit from a trade in EURUSD symbol

    profit = MT5.calculate_profit("EURUSD",40,0.1,0)
    

    Project details


    Download files

    Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

    Source Distribution

    atlas_algo_trading-1.0.0.tar.gz (4.8 kB view details)

    Uploaded Source

    Built Distribution

    If you're not sure about the file name format, learn more about wheel file names.

    atlas_algo_trading-1.0.0-py3-none-any.whl (4.8 kB view details)

    Uploaded Python 3

    File details

    Details for the file atlas_algo_trading-1.0.0.tar.gz.

    File metadata

    • Download URL: atlas_algo_trading-1.0.0.tar.gz
    • Upload date:
    • Size: 4.8 kB
    • Tags: Source
    • Uploaded using Trusted Publishing? No
    • Uploaded via: twine/6.1.0 CPython/3.9.9

    File hashes

    Hashes for atlas_algo_trading-1.0.0.tar.gz
    Algorithm Hash digest
    SHA256 f45e31b541c3944d63749abb2126f0baeeea8e61a143f0caab01258ae0d0c55e
    MD5 7fee4e8e9e75129cccca6fa37d39dd5f
    BLAKE2b-256 a573422a04034301995f16ddfa94c154d144bfa1dd2adc65f2e093e1a2f56713

    See more details on using hashes here.

    File details

    Details for the file atlas_algo_trading-1.0.0-py3-none-any.whl.

    File metadata

    File hashes

    Hashes for atlas_algo_trading-1.0.0-py3-none-any.whl
    Algorithm Hash digest
    SHA256 4e47c7d9468205e30aa5bb29ad2066be167dfc9ed69f44b09c93c88f9259ee09
    MD5 549bd0b6e636fa13703bcf346f14f3be
    BLAKE2b-256 554ec4a55fe0fcba098679848508724b8e5e13da4444f9fa3b4e2b3cbeaa2687

    See more details on using hashes here.

    Supported by

    AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page