Indicators: Fractal_TL

 

Fractal_TL:

An indicator for automatic drawing of trendlines based on fractals of a given timeframe.


Author: Almat Kaldybay

 

Great indicator! Just one little thing you forgot to do was to remove the objects after removing the indicator from the chart. So people can add the following code at the end of it to remove all objects.


//---Delete Objects after removing the indicator
void OnDeinit(const int reason)
      {
       ObjectsDeleteAll(0,0,-1);
      }
Reason: