당사 팬 페이지에 가입하십시오
- 조회수:
- 11729
- 평가:
- 게시됨:
- 2011.01.20 15:22
- 업데이트됨:
- 2016.11.22 07:32
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
The idea of this approach is described in the "New Bar" Event Handler article. The example of its use in the Expert Advisors is presented in the article. Here you will find the solution for the indicators. Idea is the same: it will allow to perform recalculations only when the new bar has appeared. It's a convenient alternative to the direct use of the OnCalculate() function.
Here is the simple indicator, it prints a line when the new bar has appeared:
//+------------------------------------------------------------------+ //| OnNewBarCalculate.mq5 | //| Copyright 2010, Lizar | //| Lizar@mail.ru | //+------------------------------------------------------------------+ #property copyright "Copyright 2010, Lizar" #property link "Lizar@mail.ru" #property version "1.00" #property indicator_chart_window #include <OnNewBarCalculate.mqh> // here is the secret of call of OnNewBarCalculate() function //+------------------------------------------------------------------+ //| New bar event handler for the indicator | //+------------------------------------------------------------------+ int OnNewBarCalculate(const int rates_total, const int prev_calculated, const datetime& time[], const double& open[], const double& high[], const double& low[], const double& close[], const long& tick_volume[], const long& volume[], const int& spread[]) { //--- here you can write the code, similar to OnCalculate(); //--- but this function will be called only if a new bar has appeared (not at every tick) PrintFormat("New bar: %s",TimeToString(TimeCurrent(),TIME_SECONDS)); //--- return value of prev_calculated for next call return(rates_total); }
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/199

Trade signals based on reversal candlestick patterns is considered. The code of the Expert Advisor based on this strategy can be generated automatically using the MQL5 Wizard.

New version of the sChartsSynchroScroll script.

This script exports indicator's values to CSV file.

This Expert Advisor performs the synchronization of charts.