Indicators: Key Level Indicator

 

Key Level Indicator:

The indicator draws true Key Level on chart based on DiNapoli Fibonacci levels gives point of intraction by buyers and sellers.

Author: vishal koli FX

 

Hi, nice indicator.

Has problem.

  1. This indicator draws two lines on the chart. One Red, One Blue (not shown in image).
  2. When the indicator is removed from the chart it does not delete the Blue line.

This code in incomplete, it deletes only the red line.

int deinit()
  {
 
 
   ObjectDelete("Target2 line");
   
   return(0);
  }

Cheers

 

Debe agregar los siguiente:

int deinit()
  {
 
 
   ObjectDelete("Target2 line");		// linea roja
   ObjectDelete("Target3 line");		// linea azul
   return(0)

}

Reason: