Discussion of article "Developing stock indicators featuring volume control through the example of the delta indicator"

 

New article Developing stock indicators featuring volume control through the example of the delta indicator has been published:

The article deals with the algorithm of developing stock indicators based on real volumes using the CopyTicks() and CopyTicksRange() functions. Some subtle aspects of developing such indicators, as well as their operation in real time and in the strategy tester are also described.

In the terminal, the real volume is indicated simply as Volume. It will be of interest to us. Since the terminal features tick history, as well as time and sales, it is now possible to develop stock indicators. They allow us to see what is happening "behind the scenes", i.e. what the real volume consists of: volume and frequency of executed trades, as well as the correlation of sellers and buyers at a certain time period. This means we can now expand the volume into components. These data can significantly improve the accuracy of our trading forecasts. At the same time, it is more difficult to develop such an indicator as compared to a usual one. This article thoroughly describes the sequence and subtleties of developing stock indicators, features of their work and testing. As an example, we will develop the delta (difference) indicator of buy and sell volumes that form the real volume. As the indicator is developed, the rules of working with the tick flow are to be described as well.

The final result is presented below. A blue bar shows the dominance of buyers on a certain candle, while a red one — the dominance of sellers.


Fig. 5. Delta indicator on RTS-6.18

The estimation of real volumes opens up new horizons for the stock market analysis allowing for better understanding of the price movement. This indicator is only a small part of what can be developed based on the tick data analysis. Creating stock indicators based on real volumes is quite a feasible task. I hope, this article will help you in creating such indicators and improving your trade.

Author: Alexey Kozitsyn

 

mr. kozitsyn, 

congratulations for great job ! this is best Delta indicator until now, very fast.

I try modify it to plot only positive values with diferent color to buy/sell delta (best to compare size of histogram bars),without success, You can give some tipe how to do it or post where should modify the original code ?

Another question, is it possible to plot a vertical instead horizontal histogram ? I try to plot vertical histogram using https://www.mql5.com/en/articles/2714 but it didn´t plot any value, in fact I try plot volume values in vertical histogram and it didn´t plot any king of volume (I use NormalizeDouble to convert from long to double).

Thanks very much !

Statistical distributions in the form of histograms without indicator buffers and arrays
Statistical distributions in the form of histograms without indicator buffers and arrays
  • www.mql5.com
Histograms allow researchers to visually evaluate the distribution of statistical data grouped by the frequency of their penetration into a certain (predetermined) interval. Histograms and their use in the statistical data analysis are a well-studied topic with multiple articles devoted to it [1, 2, 3, 4, 5, 6, 7] and a large number of CodeBase...
 
frcardim:

mr. kozitsyn, 

congratulations for great job ! this is best Delta indicator until now, very fast.

Thanks!

I try modify it to plot only positive values with diferent color to buy/sell delta (best to compare size of histogram bars),without success, You can give some tipe how to do it or post where should modify the original code ?

Replace DisplayValues() function with this one:

//+------------------------------------------------------------------+
//| Отображение значений индикатора                                                                                             |
//+------------------------------------------------------------------+
void DisplayValues(const int index,// Номер свечи
                   const long sumVolBuy,// Суммарный объем покупок
                   const long sumVolSell,          // Суммарный объем продаж
                   const int line                  // Номер строки вызова функции
                   )
  {
//--- Проверяем корректность номера свечи
   if(index<0) // Если некорректный номер
     {
      Print(__FUNCTION__,": ОШИБКА! Некорректный номер свечи '",index,"'");
      return;                                       // Выходим
     }
//--- Рассчитаем дельту
   const double delta=double(sumVolBuy-sumVolSell);
//--- Заносим значения в буферы
   //bufDelta[ index ]= delta;                       // Записываем значение дельты
   bufDelta[ index ]= (delta>0) ? delta : -delta;  // Записываем значение дельты
   bufDeltaColor[ index ] =(delta>0) ?  0 : 1;     // Записываем цвет значения
   bufBuyVol[ index ] = (double)sumVolBuy;         // Записываем сумму покупок
   bufSellVol[ index ]=(double)sumVolSell;         // Записываем сумму продаж
  }

Another question, is it possible to plot a vertical instead horizontal histogram ? 

It's not possible in this indicator.
 

Mr. Kozitsyn,


First of alll, congratulations!!! Great, great, great job!!! That's what i'm looking for.

However, this indicator is half of my desire. I'd like to draw a bolinger band over delta indicator to show me where the money flow is greater than a normal behavior. I had tried this, but i  wasn't able to see the bbands lines at the same window. Could you help me?

Thanks a lot!!!


Rodrigo Pimenta

 
rpimentaf:

Could you help me?

Thanks a lot!!!


Rodrigo Pimenta

Sorry, but I don't work with BB.

You can use Freelance for your task.

 

hello thanks for this awesome indicator .. i tried a lot diferents delta indo .. and now it fixed very weel with my broker data .. thanks.. i am wondering if we can modified or just make some improvement to show comulative delta  like candles .. will be nice


thanks

 
OrelMely:

hello thanks for this awesome indicator .. i tried a lot diferents delta indo .. and now it fixed very weel with my broker data .. thanks.. i am wondering if we can modified or just make some improvement to show comulative delta  like candles .. will be nice


thanks

The improved version of the indicator has been published, including a cumulative Delta.

 
Alexey Kozitsyn:

The improved version of the indicator has been published, including a cumulative Delta.

Thanks this look very nice , just a question about the last one in code article . I am using it right now via api from binance to mt5 and i have some doubts about the plotting. Maybe  we have some problem via api?


 
OrelMely:

Thanks this look very nice , just a question about the last one in code article . I am using it right now via api from binance to mt5 and i have some doubts about the plotting. Maybe  we have some problem via api?

I need to see the terminal experts log to answer you. Can you send me private message with the log?

Reason: