Nguyen Van Luong / プロファイル
- 情報
|
6+ 年
経験
|
1
製品
|
1
デモバージョン
|
|
0
ジョブ
|
0
シグナル
|
0
購読者
|
Nguyen Van Luong
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
Nguyen Van Luong
Tele
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>
Nguyen Van Luong
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=
Nguyen Van Luong
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 ( "-" +
Nguyen Van Luong
シェアされた作者Denis Zyatkevichの記事
Gửi file Report qua FTP
トレードレポートとSMS通知の作成と発行
トレーダーはかならずしも何時間もトレーディング端末の前に座っていられるわけでも、またそうしたいわけでもありません。特に、トレーディングシステムが多かれ少なかれ形式化され自動でマーケット状況を特定できる場合にはそうです。本稿ではトレード結果レポートをHTMLファイルとして作成し、FTPを介してWWWサーバーにアップロードする方法について述べます。また、トレードイベント通知をSMSとして携帯電話に送信することみついても考察します。
Nguyen Van Luong
共有済みの作者の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.
Nguyen Van Luong
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
Nguyen Van Luong
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
Nguyen Van Luong
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
Nguyen Van Luong
Vladimir Karputov
トピックに対するコメント Partial close tickets separately
Lorentzos Roussos : Does the Partial remaining order get a new ticket in MT5 as in MT4 ? Example: //+------------------------------------------------------------------+ //|
Nguyen Van Luong
共有済みの作者のoschenkerコード
Simple ZZ 保合領域
これは Simple ZigZag 指標を利用したさらなる実験です。この小規模なアップグレードでは、指標は価格の統合領域を見つけて色付きの長方形でマークすることができるようになりました。
Nguyen Van Luong
Xử lý ZigZag
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

Nguyen Van Luong
Bắt sự kiện SL và TP để gửi thông báo qua các kênh thông tin.
Vladimir Karputov
トピックに対するコメント How to start with MQL5
Example: tracking the triggering of Stop Loss or Take Profit Code: SL TP Triggered.mq5 //+------------------------------------------------------------------+ //|
Nguyen Van Luong
Cộng thêm nhiều ngày vào ngày hiện tại
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
Nguyen Van Luong
シェアされた作者Dmitry Fedoseevの記事
Đọc để hiểu về Time()
MQL5 プログラミング基礎:時刻
本稿は時間と連携する標準的 MQL5 関数に着目します。また、プログラムテクニック、Expert Advisors およびインディケータを作成する際必要となる時間と関連する実践的に便利な関数も取り上げます。特に注意を払うのが時間測定の一般的理論です。本稿はまず MQL5 の初心者プログラマーに興味を持ってもらえる内容です。
Nguyen Van Luong
leoa451
トピックに対するコメント How to check Market Open/Closed in MT5 ?
The method I use: bool Status() { trade.OrderDelete( 0 ); switch (trade.ResultRetcode()) { case 10017 : return
Nguyen Van Luong
Kiểm tra xem thị trường có mở cửa hay không?
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
: