How to Open Amibroker or Metatrader Application with th Help of C# Programme Tutorial for Beginners

AkPZh

We all Came Across with this Amibroker and Metatrader Application during the study of charts or say viewing the live perfomance with the help from it.
So here i'am friend with the lession in C# programme or say first programme basics of opening Metatrader and Amibroker Application.



To open in Amibroker please do follow these programme

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace Demo_Console { class Program { static void Main(string[] args) { Process ExternalProcess = new Process(); ExternalProcess.StartInfo.FileName = @"C:\Program Files\AmiBroker\Broker.exe"; ExternalProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized; ExternalProcess.Start(); ExternalProcess.WaitForExit(); } } }

To open in MetaTrader please do follow these programme:

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace Demo_Console { class Program { static void Main(string[] args) { Process ExternalProcess = new Process(); ExternalProcess.StartInfo.FileName = @"C:\Program Files\MetaTrader\terminal64.exe"; ExternalProcess.StartInfo.WindowStyle = ProcessWindowStyle.Maximized; ExternalProcess.Start(); ExternalProcess.WaitForExit(); } } }

I Hope you will Find These Helpful If anybody wants free Amibroker Charts Can Check By Right Side in The Folder All of the Indian Stock Market Scrips are Available which basically also helps in decision making of Buy/Sell Signals in Trading and Before Trading Please do Read The Disclaimer.