Nguyen Van Luong
Nguyen Van Luong
  • Informações
6+ anos
experiência
1
produtos
1
versão demo
0
trabalhos
0
sinais
0
assinantes
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
Comentário ao tópico 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
Comentário ao tópico 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
Comentário ao tópico 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
Comentário ao tópico 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
Comentário ao tópico 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 ( "-" +
compartilhou este artigo do autor Denis Zyatkevich
Gửi file Report qua FTP
Criação e publicação de relatórios de negócios e notificação SMS
Criação e publicação de relatórios de negócios e notificação SMS

Os negociantes nem sempre têm a habilidade e desejam ficar sentados na frente do terminal de negócio por horas. Especialmente se o sistema de negócio for mais ou menos formalizado e puder automaticamente identificar alguns dos estados do mercado. Este artigo descreve como gerar um relatório de resultados de negócios (utilizando o Consultor Especialista, o indicador ou o script) como um arquivo HTML e carregá-lo por FTP para o servidor WWW. Também levaremos em consideração o envio de notificações de eventos de negócios por SMS para o celular.

compartilhou o código do autor NickBixy
Scanner
 Multi Pair Pivot Point Scanner Alerts 2.8
Scans multiple symbols looking for when the price crosses a pivot point or when xxPoints Near or bounce off pivot then it alerts the trader.
nicholish en
nicholish en
Comentário ao tópico 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
Comentário ao tópico 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
Comentário ao tópico Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
compartilhou o código do autor oschenker
 Simple ZZ Consolidation Zones
Continuamos experimentando com o indicador Simple ZigZag. Uma pequena atualização permite que o indicador de localizar e marcar a área colorida consolidação de preços retângulos.
compartilhou o código do autor Andre Enger
 Harmonic Pattern Finder V2
Indicador para mostrar padrões harmônicos existentes e emergentes no gráfico.
Xử lý ZigZag
Vladimir Karputov
Vladimir Karputov
Comentário ao tópico 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
Comentário ao tópico 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
Comentário ao tópico 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
compartilhou este artigo do autor Dmitry Fedoseev
Đọc để hiểu về Time()
Fundamentos básicos da programação MQL5: Tempo
Fundamentos básicos da programação MQL5: Tempo

Este artigo foca nas funções padrões do MQL5 para trabalhar com o tempo, bem como técnicas de programação e funções praticamente úteis para trabalhar com o tempo que são necessárias ao criar Expert Advisors e indicadores. Atenção particular é dedicada à teoria geral da medição de tempo. Este artigo deve ser de interesse principalmente para programadores MQL5 novatos.

leoa451
leoa451
Comentário ao tópico How to check Market Open/Closed in MT5 ?
The method I use: bool Status() { trade.OrderDelete( 0 ); switch (trade.ResultRetcode()) { case 10017 : return