Can you control the number of buffer parameters that display in a custom indicator? Or can you reuse a buffer changing colors?

 

See image for a better explanation. I only want to display 1 value on the RSI and 3 on the MACD

I know why they are there but I want to hide them just because it irritates me. I needed multiple buffer for the colors, etc... Is it possible to reuse a buffer just for color?

int init()
  {
  
   IndicatorBuffers(7);
   
   IndicatorShortName("RSI++("+RSIPeriod+")");

 

Even if you comment out that ..

//IndicatorShortName("RSI++("+RSIPeriod+")");

... it always be shown, even when you created CI without any buffer, it's name will be shown :(.

Good luck .

 

If you dont want the indicators name to be shown do

IndicatorShortName("");
 
SDC:

If you dont want the indicators name to be shown do

It works, Awesome, I didn't know that - now I know. Thanks !.