PureBytes Links
Trading Reference Links
|
Kinda late to chime in here but, actually, in TS2000i you *can* plot
text into the future. For example, you can do this:
vars: y(0), Str(""), DD(0);
if LastBarOnChart then begin
Str = "YourString";
DD = JulianToDate(DateToJulian(Date) + 15);
y = Text_New(DD1, 0, Low, Str);
Text_SetStyle(y, 0, 1);
end;
Of course, the prerequisite here is that you have sufficient number of
bars to the right available on your chart. Same applies to trendlines
- just need to feed it with proper future dates.
Best regards,
Ivo Karindi
|