거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Tick Chart in MQL4 - MetaTrader 4용 지표

Jaffer Wilson
게시자:
jaffer wilson
조회수:
16941
평가:
(14)
게시됨:
2020.04.01 15:04
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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.

    MA based Currency Strength Indicator MA based Currency Strength Indicator

    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 MACD Stochastic MACD

    Stochastic MACD (metatrader 4 version)

    Refresh 28 Charts Refresh 28 Charts

    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 Index Non Lag Relative Strength Index

    Non Lag Relative Strength Index for MT4 Eliminates unnecessary preliminary calculations on the built-in RSI.