Open-ended rectangle

 
Would it be possible to create an open-ended rectangle i.e. a rectangle without the second time coordinate or an raylike infinite time projection? I originally thought about creating two horizontal lvls and filling the space in between with a background color but since that isn't possible in mq4 I have to resort to using rectangles. The problem with rectangles is that they have ending points with the 0 shiftbar being the farthest possible extreme. Any ideas?
 
Yojimbo:

Would it be possible to create an open-ended rectangle i.e. a rectangle without the second time coordinate or an raylike infinite time projection?

The problem with rectangles is that they have ending points with the 0 shiftbar being the farthest possible extreme. Any ideas?

  1. Create the rectangle with a future time coordinate (Time[0]+86400) or
    #define INF 0x6FFFFFFF  // Not quite infinite, Jul 2029, or 1,879,048,191
  2. What makes you think that. Attach 4 Sessions - MQL4 Code Base, press the Chart Shift button, and watch it paint rectangles into the future.


 
Wow. Future time coordinate. Very helpful. Thank you very much.
Reason: