Need help on how to move "comment" data into a label

 

I have this info being displayed on my main window:

Comment("\n", "1 HR Stochastic: " + Stochastic_1hr,
"\n" + "1 HR RSI: " + RSI_1hr,
"\n" + "1 HR ADX 14 +DI: " + ADX14_DI_Plus_1hr + " -DI: " + ADX14_DI_Minus_1hr,
"\n" + "1 HR ADX 5: +DI: " + ADX5_DI_Plus_1hr + " -DI: " + ADX5_DI_Minus_1hr,
"\n" + "1 HR Williams %: " + Williams_Per_1hr,
"\n",
"\n" + "DIRECTION: " + SAR_DIRECTION, "\n", "bid - ", Bid, "\n", "SAR - ", SAR_PRICE

);

But I'd like it displayed on a label that I can move and change it's colors and stuff. How is that done?