Indicators: 3Parabolic System

 

3Parabolic System:

This indicator generates signals for performing deals using alerts and colored dots on a chart.

This indicator compares the signals of three versions of Parabolic SAR indicator. The versions are set at different timeframes: junior (chart timeframe), middle and senior. Senior and middle timeframes are searched for Parabolic SAR indicator trend signals, while the junior timeframe is searched for a trend reversal signals.

For example, when parabolics are moving up at senior and middle charts while being lower than the current price and the parabolic has changed its location from "above the price" to "below the price" at the junior chart, then a buy signal is generated. A sell signal is generated the same way.

Author: Nikolay Kositsin

3Parabolic System

 
Automated-Trading:

3Parabolic System:

Author: Nikolay Kositsin

Hello Nikolay. I have seen your idekator and I like it, but in the code I see more prescription for the sound signal, but it does not work, what could be the problem ????? I would really like to add it !!! Can you help me to understand //---- buy alert
if(UpCount<AlertCount && BuyBuffer[SignalBar])
{
UpCount++;
Alert("3Parabolic System indicator: ""+Symbol()+EnumToString(PERIOD_CURRENT)+": ""Buy signal "+Symbol());
}

//---- submit alerts to sell
if(DnCount<AlertCount && SellBuffer[SignalBar])
{
DnCount++;
Alert("3Parabolic System indicator: ""+Symbol()+EnumToString(PERIOD_CURRENT)+": ""Sell signal "+Symbol());
}
//----
return(rates_total);
}
//+------------------------------------------------------------------+

 
RASTI007:

Hello Nikolay. I saw your idekator and I like it, but in the code I see another spelling for the sound signal, but it does not work, what could be the problem ????. I would really like to add it !!! Can you help me to understand

The problem is that in this indicator there is still a code of input parameters to enable this property with an explanation in Russian.
 

RASTI007:
А где он находиться в нутри кода или в наружних настройках , и можно ли его исправить и ввести ? А то я не чего не могу найти больше . Мой компьютор читает русский язык везде , но где вводные параметры в настройках у меня идут одни эроглефы за место букв в переменной , а значения нормально . не подскажете что можно сделать

 
GODZILLA:
Thank you very much ! My computer reads Russian everywhere, in MT5 and in the code, but it does not read it in the settings ??? ?
 
RASTI007:
Thank you very much ! My computer reads Russian everywhere, in MT5 and in the code, but it does not read it in the settings ???.

Rewrite the names of settings for yourself (the code is available).

The names of settings are changed in the following way:

было
input int count=1000; // size

меняем на
input int count=1000; // size

now instead of setting size 1000 you will see size 1000 at startup.

That is, what you see in the window as a name in the code is written as a comment in the line starting with the word input.

 
Urain:

Rewrite the setting names for yourself (the code is available).

The names of settings are changed like this:

now instead of the size 1000 setting you will see size 1000 at startup

That is, what you see in the window as a name in the code is written as a comment in the line starting with the word input.

That makes sense
Thanks
 
GODZILLA:
Thanks for the decoding, everything works, but I encountered another problem, I put 1 on the number of signals and removed 1 on the number of bars for the signal, I put 0 that the signal would go as soon as it appeared and saw a different picture, the signal began to appear 2 - 3 times per second. Is it possible to do something that the signal would come out once or once every 5 minutes until the full fixation of the bar, signal ????????????.
 
RASTI007:
Thanks for the decoding, everything works, but I encountered another problem, I put 1 on the number of signals and removed 1 on the number of bars for the signal, I put 0 that the signal would go as soon as it appeared and saw a different picture, the signal began to appear 2 - 3 times per second. Is it possible to do something that the signal would come out once or once every 5 minutes until the full fixation of the bar, signal ????????????.
I have never seen such a thing! It works fine for me on any bar! There is such a code in this algorithm that such things as you have can not be in principle and I do not observe them for obvious reasons!
 
GODZILLA:
I've never seen anything like this before! Everything works fine for me on any bar! This algorithm has such a code that such things as you have can not be in principle and I do not observe them for obvious reasons!

Are you saying that by setting the algorithms :

number of signals 1

bar number for signal 0

You only get one beep ??????????.

 
RASTI007:

You're telling me that by setting up algorithms:

number of signals 1

bar number for signal 0

You have only one beep ??????????.

Exactly! The algorithm is as simple as a rake!