und werden Sie Mitglied unserer Fangruppe
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Bewerten Sie es im Terminal MetaTrader 5
Tick Chart in MQL4 - Indikator für den MetaTrader 4
- Veröffentlicht:
- jaffer wilson
- Ansichten:
- 17832
- Rating:
- Veröffentlicht:
- 2020.04.01 15:04
- Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance
Introduction:
This will create an offline chart for the ticks of the symbol on which it is applied.
Instructions:
I have mentioned in the code lines, such as:
// Please uncomment the include file //#include <WinUser32.mqh>
or
// Please uncomment the below lines after downloading the file //if(hwnd!=0)// && cur_time-last_time>=2) // { // PostMessageA(hwnd,WM_COMMAND,33324,0); // last_time=cur_time; // }
Due to CodeBase policies, I cannot upload the file without it. Hence what you have to do is uncomment the lines as below:
// Please uncomment the include file #include <WinUser32.mqh> // Please uncomment the below lines after downloading the file if(hwnd!=0)// && cur_time-last_time>=2) { PostMessageA(hwnd,WM_COMMAND,33324,0); last_time=cur_time; }
Then the code will work properly.
Images:
Where to find the symbol to open the chart:
How does it looks:
Conclusion:
In this way you can have a very good study of the trade. Using the ticks you can get more knowledge of how the trade will go.
Indicator that displays the "strength" of each of the 8 major currencies (USD, EUR, GBP, CHF, AUD, CAD, JPY and NZD) based on the moving average trend of all 28 pairs that they are part of.
Stochastic MACDStochastic MACD (metatrader 4 version)
This code extracts tick data from the broker's server and refreshes the 28 charts of the 8 commonly traded currencies in MT4.
Non Lag Relative Strength IndexNon Lag Relative Strength Index for MT4 Eliminates unnecessary preliminary calculations on the built-in RSI.