I will write the indicator for free - page 58

 
Алексей Тарабанов:
Guys, you can get something for free in exchange for something free. Programmers hungry for fresh ideas and moshing are waiting for you in this thread. If you want to get something made, pitch the idea. Maybe they will implement it, maybe they will steal it.

Alexei, no one is stopping you from helping

The topicstarter does not have much time, as well as such tasks that would have the potential - on the actual topic - something that could qualify for"placement in the form - a free product on the Market or code in CodeBase"

 

Good afternoon!

Colleagues, please write a simple indicator. (I'm not very good at programming myself)

The essence of the indicator - under each candlestick to display the value of Volume/(open - close), if open - close=0, then =1

And the second value Volume1 - Volume2, i.e. how much volatility has changed relative to the previous candle.


What does it give? Analyzing these values, we calculate the moment of the upcoming movement of the price up or down.Example

The name, for example, Open Interest, or your choice.
 
Good day, Yuri! Could you please modify the standard volume indicator in MT5. We need to add an alert to beep when the current histogram reaches a certain level.
Индикаторы объемов - Использование технических индикаторов - MetaTrader 5
Индикаторы объемов - Использование технических индикаторов - MetaTrader 5
  • www.metatrader5.com
Индикаторами объемов называются те индикаторы, в расчетах которых учитываются объемы. Для рынка Форекс под объемами подразумеваются количество тиков (изменений цены), прошедших за временной интервал. Для биржевых инструментов под объемами подразумеваются объемы совершаемых сделок (в контрактах или в денежном выражении).
Files:
Volumes.mq5  4 kb
 
Borodin.A:
Hi Yuri, could you please modify the volume indicator in MT5? We need to add an alert to beep when the current hista reaches a certain level.

Try

Files:
Volumes_a.mq5  4 kb
 
Thanks for the promptness, Yuri! Everything works, no need to constantly stare at the monitor. Thank you!!!
 

Good afternoon. I need to improve my indicator, but lack knowledge and experience.

The indicator itself is a trend indicator. I also need two more functions - volatility channels for selected waves. I think bolanger bars are good for that. The necessary functions are: ability to display volatility for three waves simultaneously, change of calculation period and standard deviation ratio, and ability to change channel borders.

It is more complicated with the second function. Actually this idea is not mine, but comes from an article I read somewhere (I cannot find it now). The idea is to suppress noise of any trend direction indicator using the same bolinger bands. I.e., when the trend is directed, the indicator "rests" against the bolinger bands and when it is corrected, it is near zero. Accordingly, the trend change is reflected by the indicator as a testing of the opposite side of the volatility boundary. But here I myself can not decide which indicator to use. Therefore the function is still unrealizable.

The indicator is attached.

On the chart it should look like this:


Files:
 
Good day to you.
For MT4, you can make an indicator of time to a new peak on the indicator zig-zag, that is, the tops of the indicator zig-zag are built at approximately the same distance, you need to take the distance on the history of say 1000, calculate the tops at 150, determine the average distance between the tops and output to the digital indicator from 1 to 100% (where 100% is the expected appearance of a new peak).
This indicator is an addition for analysis of trend reversal or its rollback.
The data to be entered:
ZZHistory -
ZZSpeed -
Calculation - open and close prices, etc.
Placement - by screen length and height
If possible font size.
I would like the digital indicator to change its colour for better visualisation depending on the reading of this indicator. In other words with possibility to enter three intervals of digital indicator:
0-69 - green
70-89 - yellow
90-100 - red

 
Good day! Help me write an indicator when the open price of a candle is equal to the close price, so that this bar (candle) would be highlighted in a different colour, say black
 
Konnektor:
Good day! Help me write an indicator when the opening price of a candle is equal to the closing price, so that this bar (candle) is highlighted in a different colour, say black

While there is no indicator, you can do this with the colour settings:


 
Konnektor:
Good afternoon, please help me to write an indicator when the open price of a candle is equal to its close price so that the bar would be highlighted in a different colour, say black
bar_color = green(open[1] == close[1] ) ? red(open[1] == close[1]) : black
barcolor(color=bar_color)

Can you tell me where the error is ?