need to customize this indicator line to be not thin

 

i m using customized fib indicator and it is ok but i have one problem with it that its fibo line is very thin 

can anyone add option to control fibo lines width? 

 
void  SetIndexStyle(
   int     index,       // line index
   int     type,        // line type
   int     style=EMPTY, // line style
   int     width=EMPTY, // line width
   color   clr=clrNONE  // line color
   );
 
Marco vd Heijden:

where to add it?

 

Above or below the other ones.

 
Marco vd Heijden:

Above or below the other ones.

did not found   void  SetIndexStyle   gently can you modify it? 

 

It's already there how can you not find it ? you just need to add the WIDTH parameter.

Why is your name in the header ?

Who wrote it ?

   SetIndexStyle(0,        //line_index
                 DRAW_LINE,//type
                 1,        //style
                 4,        //width
                 clrGold); //color
  
 
Marco vd Heijden:

It's already there how can you not find it ? you just need to add the WIDTH parameter.

Why is your name in the header ?

Who wrote it

i just customized it with adding MA arrow but i just can modify arrow width and many things but not fibo line width

 

Try inserting the highlighted line

      ObjectSet("FibLevels", OBJPROP_LEVELCOLOR, Fib_Color);
      ObjectSet("FibLevels", OBJPROP_STYLE, Fib_Style); 
      ObjectSet("FibLevels", OBJPROP_LEVELWIDTH, InpWidth);
      ObjectSet("FibLevels", OBJPROP_FIBOLEVELS, level_count);

Obviously you will add an input for InpWidth

 
Keith Watford:

Try inserting the highlighted line

Obviously you will have an input for InpWidth

ok where to insert ?

 
Hisham Mahmoud Younes:

ok where to insert ?

Are you kidding me??

 
Keith Watford:

Are you kidding me??

sure not , i am not programmer , i am just trader so i am sorry to annoying you 

Reason: