Skip to content

MTsocketAPI/Csharp-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MTsocketAPI C# Libraries (Beta)

Libraries created to help developers to easily use the MTsocketAPI using C#

Basic Usage:

using MTsocketAPI.MT5;
using System.Security.Cryptography;

namespace Test
{
    internal class Program
    {
        static void Main(string[] args)
        {
            try
            {
                Console.WriteLine("#### MTsocketAPI C# Library ####");

                MTsocketAPI.MT5.Terminal mt5 = new MTsocketAPI.MT5.Terminal();

                if (!mt5.Connect())
                {
                    Console.WriteLine("Error connecting to MTsocketAPI. Please check if MT5 is running and MTsocketAPI started successfully");
                    return;
                }

                Quote quote = mt5.GetQuote("EURUSD");

                Console.WriteLine(quote.SYMBOL + " Time: " + quote.TIME + " Ask: " + quote.ASK + " Bid: " + quote.BID);

                Asset asset = mt5.GetSymbolInfo("EURUSD");

                Console.WriteLine(asset.ToString());

                Console.WriteLine("\nPress any key to send one buy order to MT5...");
                Console.ReadKey(true);
                TradeResult buy = mt5.SendOrder(asset.NAME, asset.VOLUME_MIN, OrderType.ORDER_TYPE_BUY);
                Console.WriteLine("Result:" + buy.ToString());
               
                Console.WriteLine("\nPress any key to close the order...");
                Console.ReadKey(true);
                TradeResult close = mt5.OrderClose(buy.ORDER);
                Console.WriteLine("Result:" + close.ToString());

                Console.WriteLine("Finished!");
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Error: {ex.Message}");
                return;
            }
        }
    }
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy