Nguyen Van Luong
Nguyen Van Luong
  • Information
6+ years
experience
1
products
1
demo versions
0
jobs
0
signals
0
subscribers
shared author's Alexander Fedosov article
Multicurrency monitoring of trading signals (Part 3): Introducing search algorithms
Multicurrency monitoring of trading signals (Part 3): Introducing search algorithms

In the previous article, we developed the visual part of the application, as well as the basic interaction of GUI elements. This time we are going to add internal logic and the algorithm of trading signal data preparation, as well us the ability to set up signals, to search them and to visualize them in the monitor.

shared author's Stanislav Korotky article
Applying OLAP in trading (part 4): Quantitative and visual analysis of tester reports
Applying OLAP in trading (part 4): Quantitative and visual analysis of tester reports

The article offers basic tools for the OLAP analysis of tester reports relating to single passes and optimization results. The tool can work with standard format files (tst and opt), and it also provides a graphical interface. MQL source codes are attached below.

shared author's Nikolay Kositsin code
 ZigZag_NK_Color_Price
ZigZag indicator with price labels of the ZigZag peak values.
shared author's MKaptsevich code
 DoubleZigZag
Two ZigZag indicators are used for analysis.
shared author's Anatoli Kazharski article
MQL5 Cookbook: Monitoring Multiple Time Frames in a Single Window
MQL5 Cookbook: Monitoring Multiple Time Frames in a Single Window

There are 21 time frames available in MetaTrader 5 for analysis. You can take advantage of special chart objects that you can place on the existing chart and set the symbol, time frame and some other properties right there. This article will provide detailed information on such chart graphical objects: we will create an indicator with controls (buttons) that will allow us to set multiple chart objects in a subwindow at the same time. Furthermore, chart objects will accurately fit in the subwindow and will be automatically adjusted when the main chart or terminal window is resized.

Tham khảo viết SyncScroll
Marco vd Heijden
Marco vd Heijden
Comment to topic How to get Price data and Time data of mouse position by clicking the mouse?
Yu Zhang : We can use " CHARTEVENT_CLICK " to get X coordinate value and Y coordinate value of mouse position , But How to get Price data and Time data of mouse position by clicking the mouse? It we
shared author's MetaQuotes code
ZigZag
 ZigZag
The Zigzag indicator is a series of sections connecting significant tops and bottoms at the price plot.
shared author's Dmitry Fedoseev article
Universal ZigZag
Universal ZigZag
Universal ZigZag

ZigZag is one of the most popular indicators among the MetaTrader 5 users. The article analyzes the possibilities for creating various versions of the ZigZag. The result is a universal indicator with ample opportunities to extend its functionality, which is useful in the development of trading experts and other indicators.

Lấy toàn bộ danh sách các Symbols mà sàn đang hỗ trợ -> Chỉnh lại //if(firstChar != "#" && StringLen(symbol) == 6)
evertonbg
evertonbg
Comment to topic get list of all symbols running in mt4 programatically
Just do it;-) int getAvailableCurrencyPairs( string & availableCurrencyPairs[]) { //--- bool selected = false ; const int symbolsCount = SymbolsTotal (selected); int currencypairsCount;
nicholish en
nicholish en
Comment to topic browse all the currencies available
ket314MQL4 : Hello, I would like to know how to browse all the currencies available for my EA in mql5 . When i test it (F5), i select in Settings -> Symbols -> All Symbols from Market Watch and i
Template
Alain Verleyen
Alain Verleyen
Comment to topic How to change default template for EA testing
gooly : as far as I know it's not possible since b600+ :(( You can only save an EA and use this as your template Of course it's possible, why not ? For "live" chart, save your template as default.tpl
shared author's Rodrigo Malacarne code
 Heatmaps, color gradients and scales in MQL5
The purpose of the present code is to demonstrate how easy it is to create color scales, color gradients and heatmaps with the MQL5 language and functions.
Pause/Unpause Tester using EA
Stanislav Korotky
Stanislav Korotky
Comment to topic pause visual backtest at specific time of day or date/time stamp...
Alain Verleyen : In MT4 Strategy Tester ? Oh, sorry. Two my mistakes. First, correct link to MQL4's DebugBreak - is this . And second, it's indeed of no use in MT4 during visual testing, because MT4
Pause/Unpause Tester using EA
Ubzen
Ubzen
Comment to topic Get pause in back test by code
https://www.mql5.com/en/forum/134713 https://www.mql5.com/en/forum/127035 Do a better search next time
Pause/Unpause Tester using EA
Christos Papageorgiou
Christos Papageorgiou
Comment to topic MQL5 Is it possible to Pause Backtesting when an order is opened by Using Coding?
#import "user32.dll" void keybd_event( int bVk, int bScan, int dwFlags, int dwExtraInfo); #import #define VK_SPACE 0x20 //Space #define VK_RETURN 0x0D //Return - Enter Key #define KEYEVENTF_KEYUP
Pause/Unpause Tester using EA
JC
JC
Comment to topic Pause/Unpause Tester using EA
heyarn : Does anyone know how to use an EA to pause/unpause tester? I want whatever tests are running to be paused when the EA is trying to make a trade.. Then when the trade is complete, I need it to
Tạm dừng trong lúc BackTest
William Roeder
William Roeder
Comment to topic pausing the visuell backtest when an order is opened
APeng : So, I need a function that pauses the backtest, when a trede is done! // https://forum.mql4.com/35112 */ #include <WinUser32.mqh> #import "user32.dll" int GetAncestor( int , int ); #import
shared author's Andrey Aseykin code
 StocksBG
StocksBG indicator displays the activity of major stock exchanges on a chart with M15 or less timeframe.
shared author's fxsaber code
 Clock
A library for creating analog clocks using MetaTrader 4/5 graphical resources.
shared author's Vladimir Karputov article
Studying the CCanvas Class. How to Draw Transparent Objects
Studying the CCanvas Class. How to Draw Transparent Objects

Do you need more than awkward graphics of moving averages? Do you want to draw something more beautiful than a simple filled rectangle in your terminal? Attractive graphics can be drawn in the terminal. This can be implemented through the CСanvas class, which is used for creating custom graphics. With this class you can implement transparency, blend colors and produce the illusion of transparency by means of overlapping and blending colors.