Numchars — количество знаков после запятой.
Inputs: Numchars(4),textcolor(white);
vars:st(-1),tlc(0);
if datacompression<=1 then
begin
if lastbaronchart then
begin
if st-1 then
begin
Text_setlocation(st,date,time,close);
text_setstring(st,numtostr(close,numchars));
end
else st=text_new(date,time[1],close,numtostr(close,numchars));
text_setstyle(st,1,2);
text_setcolor(st,textcolor);
end;
end;