Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
Olufikayo Oshagbami  

Dear Pavel,

I purchased your Macd divergent Indicator.

Under the style of MACD,  I  selected Oscillator but the Oscillator that is showing is wrong.  The Oscillator that is showing is the Real MACD.  The Oscillator is supposed to be displace exactly like moving average of Oscillator.(OSMA).


waiting FOR YOUR PROMPT RESPONSE.  There should be more options of style of MACD


Regards

sajjal4u  

Hello,

Does the Candle Pattern Finder work with Heikin-Ashi candles?


Thanks,

Pavel Zamoshnikov  
sajjal4u:

Does the Candle Pattern Finder work with Heikin-Ashi candles?

No. The сandles Heikin-Ashi have a slightly different principle of analysis
Olufikayo Oshagbami  

@ Pavel Zamoshnikov,


This is the error message I get I want to download candle pattern finder the error message read thus.  2016.02.01 15:53:05.653 MQL4 Market: failed parsing info about purchasing a product 'Candle Pattern Finder'


Kindly assist me. out of 30 actvations I have downloaded 2 I still have 28 activations.

Pavel Zamoshnikov  

You need to contact the Service Desk.

I told you in private more details.

Pavel Zamoshnikov  

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

Готово обновление индикатора до версии 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 of 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
     }
  }
Ariyanto  

Dear Pavel,

Will i get the mq4 if i purchase your indicator Candle Pattern Finder ?

Pavel Zamoshnikov  
Ariyanto:

Will i get the mq4 if i purchase your indicator Candle Pattern Finder ?

Hello,

Thank you for your interest in my indicator.

Unfortunately, you can only get executable code *.ex5

This restriction of the MQL-Market, which provides a balance between the interests of buyers and sellers. Otherwise the price of the indicator would be much more.

Gordon Melsom  

Hi 

I have purchased , cant seem to download to terminal, I have logged in to terminal

Thanks 

Pavel Zamoshnikov  
Gordon Melsom:

I have purchased , cant seem to download to terminal, I have logged in to terminal

Hello,

Thank you for purchasing my indicator!

You can download the indicator directly from the terminal.

Please check that your terminal MT4 registered account MQL-Community, under which you bought the indicator (click in the terminal [Ctrl + O], select the tab Community, click on the link "If you have an account, please login", enter your username and password from the MQL-Community, with which you bought my indicator)

After that, select the Market tab in the Terminal window, and type in the search bar "Candle Pattern Finder".

Then you can download the indicator.

For more information you can see on the official website MetaQuotes (video from sections "How to Purchase a Trading Robot or an Indicator from the Market?" and "How to Update, Renew the Rental Period and Reinstall Products").

Good luck and profits!

Gerry1234  

Hi Pavel 

Can this product find candles in the forex market has well ......

 

UK trader  

Pavel Zamoshnikov  
Gerry1234:

Can this product find candles in the forex market has well ......

The indicator is designed specifically for the Forex market.

So all models that are implemented in the indicator, adapted to the continuous Forex market and do not have gaps (as the classical models of G.L.Morris).

Therefore, the indicator does not have some of the models that don't exist without the gaps and can be realized in the stock and commodity market only, such as the "Three Star", the "Abandoned Baby", the "Kicking" or the "Upside Gap Two Crows".
Gert78  
Hi will this work on BTCUSD if I buy the full edition
Pavel Zamoshnikov  
Gert78:
Hi will this work on BTCUSD if I buy the full edition
Yes, the indicator works with bitcoins.
File:
BTC_22.01.png  48 kb
Gert78  
Pavel Zamoshnikov:
Yes, the indicator works with bitcoins.

what time frame am i looking at on the picture

thanks  

Pavel Zamoshnikov  
Gert78:

what time frame am i looking at on the picture

Daily
3110494  
How do I setup candle pattern finder on mobile mt4 I just purchased it
Pavel Zamoshnikov  
3110494:
How do I setup candle pattern finder on mobile mt4 I just purchased it
I'm sorry, but unfortunately you cannot install third-party indicators in the mobile version of MT4. You can add to the chart of the mobile MT those indicators only that are present in the default app. This limitation exists in all mobile versions of MetaTrader: iOS and Android.

You can set the indicator, that you have downloaded in the Market, to a computer only.
Pavel Zamoshnikov  

Dear traders!


There is a problem with the installation of indicators that have been downloaded from the Market service.
Now this problem is solving by the Service Desk.
I will tell you when it will be solved.


I apologize for the temporary inconvenience!


*********************************************************************************************************

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

Возникла проблема с установкой индикаторов, загруженных из сервиса Market.
Сейчас эта проблема решается службой технической поддержки.
Когда проблема будет решена, я сообщу дополнительно.

Прошу прощения за временные неудобства!

Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti