Hi Enivid,Thanks for your kind words, but you should really thank the author of the Better Volume Indicator - Barry Taylor from Emini-Watch. We just added some features to this indicator.
Do you understand that the tick volume used in this indicator has very little meaning in real world?
Hey man , thanks for reply. I am using 1.5 version with color ingoring , it would be very useful if I could see easy to read information when i get an alert to my email.@ropopo Which version are you using? It is better to attach it here to avoid confusion because there are so many...
this is awesome, thanks for sharing this buddy.View attachment 13681
When i get an email alert , i down know which pair to look or what volume has changed ...
You definitely can, but the problem is that the exact value of the CurrentColor[] isn't known at compilation time. What you can do, since there is a limited number of colors involved here, is to write some simple function that would return the desired string value for a given color value. For example:But I would like to replace the "ColorToString (CurrentColor [...]" by the name of the color (example Red, White, green, yellow ....) and I can not?
string ColorNormalName(color c) { switch(c) { case clrRed: return("Red"); case clrGreen: return("Green"); case clrBlue: return("Blue"); default: return("Unknown color"); } }
You definitely can, but the problem is that the exact value of the CurrentColor[] isn't known at compilation time. What you can do, since there is a limited number of colors involved here, is to write some simple function that would return the desired string value for a given color value. For example:
MQL4:string ColorNormalName(color c) { switch(c) { case clrRed: return("Red"); case clrGreen: return("Green"); case clrBlue: return("Blue"); default: return("Unknown color"); } }