Hi,
I want to keep the string "Vol = xx" at the end of my previous indicators.
With the following syntax how to remove the black part = xx.00 that duplicate
the volume ?
_SECTION_BEGIN("Volume");
Plot( Volume, "\nVol = " + WriteVal( V, 1.0 ) , IIf( C > O, ParamColor("Up
Color", colorGreen ), ParamColor("Down Color", colorRed ) ), ParamStyle(
"Style", styleHistogram | styleThick, maskHistogram ) );
//_N( Title = "\nVol = " + WriteVal( V, 1.0 ));
_SECTION_END();
The last comment line remove the other indicators. This is what I want, but
with the previous indicators.
_N( Title = "\nVol = " + WriteVal( V, 1.0 ));
Thank you for the help
Best regards