Functions to simplify work with orders – library MetaTrader 5

Functions to simplify work with orders - library for MetaTrader 5
This is a class that will allow to open, close and modify your position by placing orders with really simple commands and configuration: Buy(), Sell(), Close(), Modify(). It has never been so easy! 🙂  Sample: #include <K_Orders.mqh> input int TP = 70; input int SL = 20; input double Lots=0.2; Order order; //+——————————————————————+ //| Script … Read more

The example of the work with the CSV file as with a table – script MetaTrader 5

Output result of the script.
The script demonstrates the work with the table in which the only detail is necessity to know the number of columns. news.txt should be converted to csv file with delimiter”;”, or any other file but in the same code. filehandle=FileOpen(“News.csv”,FILE_READ|FILE_CSV|FILE_ANSI,’;’); Instead of “;” set this symbol. Such approach allows to work with each line separately, … Read more