Drawing Objects Past Shift?

 

For my systems, I need to draw objects past bar zero, so my shift is set very far to the left, or center of the chart window.

Every time I draw an object past shift, even only a single bar past (anything less than bar zero), the objects either do not draw, or are stretched to infinity.


How are objects drawn past shift? Is it possible?

(Applying a ray is not what I'm looking for)

 
Please show the section of code that you use to draw the object
 

Never mind.

I wanted to place lines by simply adding/subtracting bars, but I ended up with the below work around which spits out a date, and even adjusts itself by timeframe.

Time1 = TimeCurrent() + ((Period() * 60) * Variable);


Where: Variable is the quantity of bars to the right from Bar zero, plus one bar.

Reason: