PureBytes Links
Trading Reference Links
|
if you don't mind opening an indicator to write your note on a chart this
might do the trick. write the text between the quotes in the input
input: _txt("");
var: _txt(0);
if currentbar = 1 then _txt = Text_New(d,t,0,txt);
Text_SetLocation(_txt,Lastcalcdate,Lastcalctime,highest(h,30){just a
suggestion});
Text_SetStyle(_txt,1,1);
>I had a problem with this code in the past. After making a note to
>myself on a chart, I noticed sometime later it had disappeared.
>It seems that for some reason the reference number changes under
>its own accord disqualifying the code. This happened several times
>until I gave up on it.
>Or, am I the only one with this problem? (TS4)
>
>Ian.
>
>
>
>Message text written by INTERNET:omega-list@xxxxxxxxxx
>>Input: TextBoxNumber(0);
>
>If LastBarOnChart then begin
> Text_SetLocation(TextBoxNumber,Date,Time,Close);
> Text_SetStyle(TextBoxNumber,1,1);
>
>end;
>
>If CurrentBar = 1 then Plot1(C,"");
><
>
>
|