j'ai testé ceci , en reprenant le code ci-dessus , Bandwidth et TickValue pour exemple
bien à vous

thank's for inspiration
express ChartMessage
vars
input $ShiftBox(0,100,0);
series anchor1 (BandWidthExpress.BandWidth);
series anchor2 (BandWidthExpress.varmax);
series anchor3 (BandWidthExpress.varmin);
series anchor4 (MATickValueExpress.Ma);
calculation
if (CurrentBarIndex() - FinalBarIndex()) = - $ShiftBox then
begin
HighLight("textabove:" + "" + "\n" +
// --------------------- //
// --------------------- //
// --------------------- //
// --------------------- //
// --------------------- //
"Max" + PriceToString(anchor2)
+ "\n" +
"Width" + PriceToString(anchor1)
+ "\n" +
"Min" + PriceToString(anchor3)
+ "\n" +
"Tickv" + PriceToString(anchor4)
+ "\n" + "\n"
+ TimeToString(time, "%H:%M:%S")
// --------------------- //
// --------------------- //
// --------------------- //
// --------------------- //
// --------------------- //
+ "\n" + "" + "\n" + "" + "\n" + "" + "\n", "grey");
end
interpretation
begin
end
nb: je pense qu'il manque quelques pixels de longueur à la tige supportant l'info bulle pour que celle ci ne croise pas d'autres objets comme "show volume histogramme" par exemple
Cordialement
Ceres