Need to change where info is displayed on chart

 

Hey guys, can someone assist me with moving where my Session indicator displays the session's name and pip count?

I'd like the info to be displayed on-top of the frame instead of within the frame.

Depending on the candlestick formations at session open, the info sometimes gets obstructed and difficult to read.

Thanks in advance

 
I know that it is not obvious, but topics concerning MT4 and MQL4 have their own section.
In future please post in the correct section.
I will move your topic to the MQL4 and Metatrader 4 section.
 
Gary Brown:

Hey guys, can someone assist me with moving where my Session indicator displays the session's name and pip count?

I'd like the info to be displayed on-top of the frame instead of within the frame.

Depending on the candlestick formations at session open, the info sometimes gets obstructed and difficult to read.

Thanks in advance

Set the Label Object , to : 

string label_object_name="label name";
       //for below the line     
       ObjectSetInteger(ChartID(),label_object_name,OBJPROP_ANCHOR,ANCHOR_LEFT_UPPER);
       //for above the line     
       ObjectSetInteger(ChartID(),label_object_name,OBJPROP_ANCHOR,ANCHOR_LEFT_LOWER);
 
Keith Watford:
I know that it is not obvious, but topics concerning MT4 and MQL4 have their own section.
In future please post in the correct section.
I will move your topic to the MQL4 and Metatrader 4 section.
Oh wow, my sincere apologies. Thanks for the redirect.
 
Lorentzos Roussos:

Set the Label Object , to : 

Hey Lorentzos, thank you for responding sir. Much appreciated.
Reason: