I've added all the original Alerts back. Please have a look and tell me what's to be added. I ma getting more and more confused with these indicators...
I changed two lines as follow:
From:
PlotIndexSetInteger(2, PLOT_ARROW, 0);//233
PlotIndexSetInteger(3, PLOT_ARROW, 0);//234
To:
PlotIndexSetInteger(2, PLOT_ARROW, 233);//233
PlotIndexSetInteger(3, PLOT_ARROW, 234);//234
And corresponding indicator with screen shot is attached.
As you can see on attached pictures your indicator shows all arrows which I do not want. I want , as it is done in CASH_FLOW indicators( both versions, MT4 and MT5): only arrows for red , white and magenta bars that meet certain conditions regarding the spread(H-L) > (H-L) of previous bar and volume > volume of previous bar:
if (spd1 < spd2)
{
if (v1 < v2)
It must show only arrows that meet conditions as it is in CASH_FLOW indicators ( both versions MT4 and MT5) ...
In attached indicator please modify alerts for Supply and Demand to reflect requested conditions ( in this case alerts on all other supply and demand arrows would be lost) or add two more alerts only for white , red and magenta bars that meet requested conditions regarding spread and volume.
No matter what you do outcome must be the same, there must not be change conditions as it was done in CASH_FLOW indicator. In some point we don't understand each other. I thought that merging two indicators with applying requested conditions will help because separately on chart BetterVolumeChartBars and SDRW doesn't freeze computer so by merging them might help. Unfortunately coding is going on unwanted direction and completed something that was done correctly in CASH_FLOW indicator(M and MT5 versions).
Please tell me where we don't understand each other anymore regarding these indicators, merging , conditions for alert...
Please check with CASH_FLOW indicator that you already created...