Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
123
Pavel Zamoshnikov  

При использовании индикатора, пожалуйста, обратите внимание:

Самые надежные сигналы свечных моделей  возникают на таймфрейме Daily. С уменьшением таймфрейма надежность сигналов падает! 

Mr. G  

Your indicator is much, much better than the free counterparts on the internet, but I have one question if you don't mind:

If I buy your indicator, do I get the source code *.mq5 or just the *.ex5?

 

 I'm asking because I have an issue with the font displayed (too small for me, I guess I'm getting too old :(), and second, I could use this indicator to include it in my strategy, which would require access to the code in order to adapt it to fit my needs.

 

Thanks in advance! 

Pavel Zamoshnikov  
gdhami:

Your indicator is much, much better than the free counterparts on the internet, but I have one question if you don't mind:

If I buy your indicator, do I get the source code *.mq5 or just the *.ex5?

 I'm asking because I have an issue with the font displayed (too small for me, I guess I'm getting too old :(), and second, I could use this indicator to include it in my strategy, which would require access to the code in order to adapt it to fit my needs.

Thank you for your interest in my indicator.

Unfortunately, you can only get executable code *.ex5
This restriction MQL Market, which provides a balance between the interests of buyers and sellers.


But your problems have a solution:

1. In the next version of the indicator I'll make a custom font size. I'll try to make it soon.

2. You can add the indicator to your strategy, even without access to the source code.

I send you an example of an Advisor below, that receives signals from the indicator "Candle Pattern Finder".

Please note that this is only the example of using the indicator in your EA. It is not intended for actual trading.
Mr. G  
Pavel Zamoshnikov:

Thank you for your interest in my indicator.

Unfortunately, you can only get executable code *.ex5
This restriction MQL Market, which provides a balance between the interests of buyers and sellers.


But your problems have a solution:

1. In the next version of the indicator I'll make a custom font size. I'll try to make it soon.

2. You can add the indicator to your strategy, even without access to the source code.

I send you an example of an Advisor below, that receives signals from the indicator "Candle Pattern Finder".

Please note that this is only the example of using the indicator in your EA. It is not intended for actual trading.

 

Thank you Pavel! Yes, that's almost what I want, but there's one tiny problem: I can see the signal but not the type of candle pattern (you know, each pattern have its own rules for entry)

 

Can the EA get this info?

Pavel Zamoshnikov  
gdhami:

Thank you Pavel! Yes, that's almost what I want, but there's one tiny problem: I can see the signal but not the type of candle pattern (you know, each pattern have its own rules for entry)

Can the EA get this info?

The indicator can not do it yet. I'll add it in the next version of the indicator.
Pavel Zamoshnikov  

English text see below

Уважаемые трейдеры!

Готово обновление индикатора до версии 1.2

Изменения в новой версии:

1. Добавлен параметр "Description Font Size", регулирующий размер шрифта описания паттерна

2. Индикатор теперь может передавать в советник не только информацию о возникновении свечного паттерна, но и код паттерна через глобальные переменные терминала.


Как использовать код паттерна в вашем советнике:

В момент возникновения свечного паттерна индикатор записывает код паттерна в глобальную переменную терминала.

Имя глобальной переменной имеет вид "CandlePatternFinder_<Symbol>_<Period>_Pattern", где Symbol – символ инструмента, Period – период таймфрейма (в минутах), например:

"CandlePatternFinder_EURUSD_240_Pattern" – имя глобальной переменной с кодом паттерна для символа EURUSD и периодом H4.

Код паттерна
Название паттерна
0
"Hammer" ("Молот")
1
"Shooting Star" ("Падающая звезда")
2
"Morning Star" ("Утренняя звезда")
3
"Evening Star" ("Вечерняя звезда")
4
"Engulfing Up" ("Поглощение вверх")
5
"Engulfing Down" ("Поглощение вниз")
6
"Piercing Cloud" ("Просвет в облаках")
7
"Dark Cloud" ("Темные облака")
8
"Harami Up" ("Харами вверх")
9
"Harami Down" ("Харами вниз")
10
"Inverted Hammer" ("Перевернутый Молот")
11
"Hanging Man" ("Повешенный")
12
"Rising Three" ("Три поднимающихся")
13
"Falling Three" ("Три падающих")
14
"Three Star in the South" ("Три звезды на юге")
15
"Deliberation" ("Размышление")
16
"Three White Soldiers" ("Три белых солдата")
17
"Three Identical Crows" ("Три одинаковые вороны")
18
"Meeting Lines Up" ("Встречающиеся свечи вверх")
19
"Meeting Lines Down" ("Встречающиеся свечи вниз")

Обратите внимание, четные коды описывают бычьи модели, а нечетные коды – медвежьи модели.

Ниже, пример использования индикатора в советнике (все параметры индикатора по умолчанию):

string Patterns[20] = 
  {
   "Hammer",                   // 0
   "Shooting Star",            // 1
   "Morning Star",             // 2
   "Evening Star",             // 3
   "Engulfing Up",             // 4
   "Engulfing Down",           // 5
   "Piercing Cloud",           // 6
   "Dark Cloud",               // 7
   "Harami Up",                // 8
   "Harami Down",              // 9
   "Inverted Hammer",          // 10
   "Hanging Man",              // 11
   "Rising Three",             // 12
   "Falling Three",            // 13
   "Three Star in the South",  // 14
   "Deliberation",             // 15
   "Three White Soldiers",     // 16
   "Three Identical Crows",    // 17
   "Meeting Lines Up",         // 18
   "Meeting Lines Down",       // 19
  };

//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
void OnTick()
  {
   int pattern;
   double SignUp=iCustom(NULL,0,"Market\\Candle_Pattern_Finder",0,1); // BUY-signal
   double SignDn=iCustom(NULL,0,"Market\\Candle_Pattern_Finder",1,1); // SELL-signal
   if(SignUp!=EMPTY_VALUE && SignUp!=0)
     {
      pattern=(int)GlobalVariableGet(StringConcatenate("CandlePatternFinder_",_Symbol,"_",_Period,"_Pattern"));
      Print(_Symbol,", ",_Period,", BUY-pattern: ",Patterns[pattern]);
      OrderSend(_Symbol,OP_BUY,...); // buy order
     }
   else if(SignDn!=EMPTY_VALUE && SignDn!=0)
     {
      pattern=(int)GlobalVariableGet(StringConcatenate("CandlePatternFinder_",_Symbol,"_",_Period,"_Pattern"));
      Print(_Symbol,", ",_Period,", SELL-pattern: ",Patterns[pattern]);
      OrderSend(_Symbol,OP_SELL,...); // sell order
     }
  }
Pavel Zamoshnikov  

Dear traders!

Ready indicator update to version 1.2

The changes in the new version:
1. Added the "Description Font Size" parameter, regulating the size of the font pattern description
2. The indicator can now pass on to the expert Advisor not only information about the appearance pattern, but the pattern code through the global variables of the terminal.

How to use code of pattern in your EA:

When candlestick pattern occurs, the indicator writes the code pattern in a global variable of the terminal.

The name of the global variable is "CandlePatternFinder_<Symbol>_<Period>_Pattern", where Symbol – the symbol of the instrument, Period – the period of timeframe (in minutes), for example:

"CandlePatternFinder_EURUSD_240_Pattern" - the name of the global variable with the pattern code for EURUSD and period H4.

Pattern code
Name of candlestick pattern
0
"Hammer"
1
"Shooting Star"
2
"Morning Star"
3
"Evening Star"
4
"Engulfing Up"
5
"Engulfing Down"
6
"Piercing Cloud"
7
"Dark Cloud"
8
"Harami Up"
9
"Harami Down"
10
"Inverted Hammer"
11
"Hanging Man"
12
"Rising Three"
13
"Falling Three"
14
"Three Star in the South"
15
"Deliberation"
16
"Three White Soldiers"
17
"Three Identical Crows"
18
"Meeting Lines Up"
19
"Meeting Lines Down"

Please note, the even codes describe the bullish pattern, and the odd codes - bearish pattern.

Below, an example of using the indicator in the Expert Advisor (all parameters by default):
string Patterns[20] = 
  {
   "Hammer",                   // 0
   "Shooting Star",            // 1
   "Morning Star",             // 2
   "Evening Star",             // 3
   "Engulfing Up",             // 4
   "Engulfing Down",           // 5
   "Piercing Cloud",           // 6
   "Dark Cloud",               // 7
   "Harami Up",                // 8
   "Harami Down",              // 9
   "Inverted Hammer",          // 10
   "Hanging Man",              // 11
   "Rising Three",             // 12
   "Falling Three",            // 13
   "Three Star in the South",  // 14
   "Deliberation",             // 15
   "Three White Soldiers",     // 16
   "Three Identical Crows",    // 17
   "Meeting Lines Up",         // 18
   "Meeting Lines Down",       // 19
  };

//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
void OnTick()
  {
   int pattern;
   double SignUp=iCustom(NULL,0,"Market\\Candle_Pattern_Finder",0,1); // BUY-signal
   double SignDn=iCustom(NULL,0,"Market\\Candle_Pattern_Finder",1,1); // SELL-signal
   if(SignUp!=EMPTY_VALUE && SignUp!=0)
     {
      pattern=(int)GlobalVariableGet(StringConcatenate("CandlePatternFinder_",_Symbol,"_",_Period,"_Pattern"));
      Print(_Symbol,", ",_Period,", BUY-pattern: ",Patterns[pattern]);
      OrderSend(_Symbol,OP_BUY,...); // buy order
     }
   else if(SignDn!=EMPTY_VALUE && SignDn!=0)
     {
      pattern=(int)GlobalVariableGet(StringConcatenate("CandlePatternFinder_",_Symbol,"_",_Period,"_Pattern"));
      Print(_Symbol,", ",_Period,", SELL-pattern: ",Patterns[pattern]);
      OrderSend(_Symbol,OP_SELL,...); // sell order
     }
  }
Cthoke  

Hi sir; 

Hi Sir you have for MT4 or only MT5?

Pavel Zamoshnikov  
Cthoke:

Hi Sir you have for MT4 or only MT5?

Yes, version for MT4 is here.
Gordon Melsom  

Hi ,

Can you install  it on mt4 ,  by remote or is it easy , I have a Diploma in IT , 

I want an indicator that shows change of direction  on candle stick charts

Regards

Gordon 

bond101  

Hello

 

I brought the script but it don't appear on my MT 5.

 

Can you send me direct the script file so i can add it manually ? 

Pavel Zamoshnikov  

bond101:

I brought the script but it don't appear on my MT 5.

Can you send me direct the script file so i can add it manually ? 

Hello,

Do you mean indicator "Candle Pattern Finder MT5"?

It is the indicator, not script. It needs to be in the section Indicators. Check your section Indicators\Market, if you bought through the terminal MT5.

I will answer you in detail by email.

bond101  

Yes

 

I mean this indicator, not script. Sorry

 

The problem is that i can't login on MQL5 account on MetaTrader to active the indicator.

 

can you send me direct the indicator file so i can use it. 

YerVic  
Здравствуйте, Павел. Купил Ваш замечательный индикатор. Все мне очень нравится, но, только никак не могу понять - как заставить его посылать сообщения на почту и  (или) на телефон.
Pavel Zamoshnikov  
YerVic:
Здравствуйте, Павел. Купил Ваш замечательный индикатор. Все мне очень нравится, но, только никак не могу понять - как заставить его посылать сообщения на почту и  (или) на телефон.
Здравствуйте. Ответил в личку.
andrenvillela  

Hi Pavel, there is any alert that I can also push to my mobile ???....Tks, Andre

Nghia999  

Hello Sir,

    please advise me about the win rate for your system and how many signals can be generated per day?

Pavel Zamoshnikov  
Nghia999:

please advise me about the win rate for your system and how many signals can be generated per day?

Hello,

It depends on your working instruments and timeframe. You can see it for yourself on history.

But please note that candlestick analysis was originally designed for the stock markets and the most reliable signals are on the daily chart and over.

On smaller charts, the accuracy of some models is reduced.

Dzmitry Chentsou  

Доброго дня, Павел!

В описании демо-версии сказано, что она полностью функциональна на паре NZDUSD, но при установке индикатора на график выдается алерт

"2017.08.27 12:53:25.036    Candle Pattern Finder demo NZDUSD,H1: Alert: CandlePatternFinder - NZDUSD, (H1): Демо-версия полностью функциональна на GBPUSD. На других инструментах можно смотреть сигналы только на истории."

При этом история за последние пару недель на NZDUSD выглядит несколько более привлекательно, чем на GBPUSD - чисто визуально лосей меньше ;). Где ошибка в описании или в алерте?

Nur Nutzer, die das Produkt gekauft oder gemietet haben, können Kommentare hinterlassen
123