Nguyen Van Luong
Nguyen Van Luong
  • 信息
6+ 年
经验
1
产品
1
演示版
0
工作
0
信号
0
订阅者
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
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代码
 简单的之字转向巩固区域
使用简单之字转向指标所做的更多实验,一个小的升级使得指标可以找到和使用彩色的长方形来标记价格的稳定区域。
分享作者Andre Enger代码
 Harmonic 模式搜索 V2
用于显示已有和即将出现的 harmonic 图表模式。
Xử lý ZigZag
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
An example of working with the ZigZag indicator Code: ZigZag Example.mq5 Pay attention to the extremum search algorithm: if the value in the indicator buffer is not equal to "0.0" and not equal to
How to start with MQL5
Bắt sự kiện SL và TP để gửi thông báo qua các kênh thông tin.
Vladimir Karputov
Vladimir Karputov
评论给主题 How to start with MQL5
Example: tracking the triggering of Stop Loss or Take Profit Code: SL TP Triggered.mq5 //+------------------------------------------------------------------+ //|
Cộng thêm nhiều ngày vào ngày hiện tại
Fernando Carreiro
Fernando Carreiro
评论给主题 add day to datetime variable
You should consult the documentation when in doubt: https://docs.mql4.com/basis/types/integer/datetime Datetime Type The datetime type is intended for storing the date and time as the number of
共享作者Dmitry Fedoseev文章
Đọc để hiểu về Time()
MQL5 编程基础:时间
MQL5 编程基础:时间

本文着重于讲述处理时间的标准 MQL5 函数,以及创建 EA 交易和指标时所需的处理时间的编程技巧和实用函数。更格外注意时间测量的一般性理论。本文面对的主要是 MQL5 编程新手。

leoa451
leoa451
评论给主题 How to check Market Open/Closed in MT5 ?
The method I use: bool Status() { trade.OrderDelete( 0 ); switch (trade.ResultRetcode()) { case 10017 : return
Kiểm tra xem thị trường có mở cửa hay không?
MassimoMondo
MassimoMondo
评论给主题 Market Open or Close - how can I find it?
Gustavo Hennemann : Hi guys, There is no MarketInfo() in MT5. Also, this kind of solution works for holidays and days off? Thanks Hello, I found a simple solution with OnTimer routine. Let's see the