I place symbols in a watchlist 
    that satisfying a certain 
    condition with CategoryAddSymbol(Name(), watchlist, 
    1).  However, I would like to "highlight" the symbol name by, for 
    example, adding an asterisk ( * ) to the name if a second (or more) 
    condition is also met.  So far, I have not found a way to get around 
    using only Name() for the symbol in CategoryAddSymbol().  
    Modifications such as Name() + " * ", etc. don't work, producing " 
    " (empty string) for the symbol.  Any suggestions as to how to produce 
    a modified symbol without reworking CategoryAddSymbol() or 
    Name()?
     
    Bill