Nguyen Van Luong
Nguyen Van Luong
  • 信息
5+ 年
经验
1
产品
1
演示版
0
工作
0
信号
0
订阅者
Mark531
Mark531
Creating a custom symbol
Hello, I created a custom symbol following the tutorial here ( https://www.mql5.com/en/articles/3540 ). In the "Bars" tab, I click on "Import Bars", select M1 period and import a CSV file. I click on "Ok", the windows closes. Then I find my symbol in
Fabio Fontes
Fabio Fontes
How to import historical data into csv to symbol custom using CustomRatesUpdate?
* Sorry English is not my native language I want to create multiple custom symbols and import historical data from a csv I have managed to do this however the .hcc file is large and the writing speed is slow. I do not know so much programming in my
Amir Yacoby
Amir Yacoby
评论给主题 How to hide indicator plot
Jeepack : I want to hide/show my indicator plot based on a criteria. If I set the color to clrNONE, I still get a pop-up on mouseover of the invisible plot. That's still the simplest way to hide the
MQLMySQL
Eugeniy Lugovoy
Eugeniy Lugovoy
评论给主题 Discussion of article "How to Access the MySQL Database from MQL5 (MQL4)"
lukins : Thanks! I will examine your solution in depth, it may be more stable than relying on MQL only. Just FYI there is a MQL4-only bridge I wrote a while ago for MT4 build 600+
分享作者Rosh代码
Tham khảo ADX
 平滑的ADX
平滑方式有很多种。这个指标是对标准ADX指标的平滑。
分享作者MetaQuotes代码
Tham khảo
 John Ehlers的指标Smoothed ADX
该指标由很多平滑线的计算。对于标准平滑指标 ADX 给出的特定指标。 该代码转自 Easy Language。
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Calculate positions for all symbols Code: 'Calculate positions for all symbols.mq5 Objective: Several positions are open in the market. You need to get the number of positions (both BUY and SELL) for
Tham khảo CopyRate để lấy giá Open, Close của 1 nến
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Close a position at the intersection of the price and iMA Code 'Close a position at the intersection of the price and iMA.mq5' //+------------------------------------------------------------------+
Tham khảo cách khởi tạo giá trị ban đầu cho STRUC
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Example: how to calculate the number of BUY and SELL trades for each Magic number for the current day The code: 'Total transactions today by Magic number.mq5'
Tham khảo khi Alert cảnh báo sắp có tín hiệu xảy ra theo FAD
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Ahmad861 : Hey Vladimir, you have been helping me create my EA from the very beginning and asking for nothing in return and i want to thank you from the bottom of my heart. There is this one last
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Maximum price of the indicator in the visible window Code: ChartGetDouble.mq5 Task: in the subwindow number '1' find out the maximum value of the window
Tele
Sergei Poliukhov
Sergei Poliukhov
评论给主题 Send alert signal to telegram
This example How send message from indicator to Telegram #property link "https://www.mql5.com" #property version "1.00" #property strict #property indicator_chart_window #include <Wininet.mqh>
Alexander
Alexander
评论给主题 NumbersSeparator() function for Print big numbers
string FormatNumber( string numb, string delim= "," , string dec= "." ) { int pos= StringFind (numb,dec); if (pos==- 1 ) { string nnumb=numb; string enumb= "" ; } else { nnumb=
William Roeder
William Roeder
评论给主题 NumbersSeparator() function for Print big numbers
Compiled, not tested string DoubleToStrCommaSep( double v, int decimals= 4 ){ // 34,256,454.23 if (decimals == 0 ) return ( IntToStrCommaSep(v) ); if (v < 0 ) return ( "-" +
共享作者Denis Zyatkevich文章
Gửi file Report qua FTP
交易报告及短信通知的创建和发布
交易报告及短信通知的创建和发布

交易者往往不能、也不想接连多少个小时被拴在交易终端那里。如果交易系统再或多或少地正规化、而且可以自动识别一些市场状态的时候,就更是如此。本文会讲述如何生成一份 HTML 文件格式的交易结果报告(利用“EA 交易”、指标或脚本),并通过 FTP 将其上传到 WWW 服务器。我们还会考虑以短信形式向手机发送交易事件通知。

nicholish en
nicholish en
评论给主题 NumbersSeparator() function for Print big numbers
Late to the party... Here is a template function that can handle whatever number you throw at it. [MQL4/5] void OnStart () { double num = - 134523349345.23452345 ; Print (NumberToString(num, 4
Anthony Garot
Anthony Garot
评论给主题 NumbersSeparator() function for Print big numbers
Converted whroeder1's code to MQL5. I noted the max numbers that work for each function in the comments. Note: I'm actually switching over to nicholishen's code. // Adapted from
Automated-Trading
Automated-Trading
Experts: ChartBrowser
ChartBrowser : This is an utility which allows you to list all open charts, indicators, expert advisers, and scripts in alphabetic order, and switch between them. Author: Stanislav Korotky
Experts: ChartBrowser
Vladimir Karputov
Vladimir Karputov
评论给主题 Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
分享作者oschenker代码
 简单的之字转向巩固区域
使用简单之字转向指标所做的更多实验,一个小的升级使得指标可以找到和使用彩色的长方形来标记价格的稳定区域。