Adding a Label to a Level

 

Would anybody know the code to add a label to a level on a indicator.

#property indicator_level1 90

If I wanted to code in a label on this level, would there be a simple way of doing it

Thanks alot for any help you might be able to offer

 

look up objects

 
bool  IndicatorSetInteger(
   int  prop_id,           // identifier
   int  prop_value         // value to be set
   );
IndicatorSetString(INDICATOR_LEVELTEXT,0,"First Level (index 0)");
Reason: