Thank you for offering help Eric. Let me be a bit clearer.
1) Yes, I use explicit FinancialData of the form {{#Date, {#Open, #High, #Low, #Close, #Volume}}}. using the following code
makeChart[currentCandles_Dataset] :=
TradingChart[{#Date, {#Open, #High, #Low, #Close, #Volume}} & /@
currentCandles];
where I have a Dataset called currentCandles which, among other things, contains the Date,Open,High,Low,Close and Volume of each candle.
At the moment, if I display a TradingChart or an InteractiveTradingChart, the information at the top of the charts is O,H,L,C and Date of the candle currently under the cursor.
My application provides information such as "There is a peak at bar #6" or "A trendline was broken at bar #23". So, when I want to visualize if the output of my algorithm is correct, I use the TradingChart and I try to go to bar #N rather than go to bar on Tuesday, December 4.
It would be easier for me to zoom in on a bar quickly if I simply could see the index of the bar (meaning its index in the Dataset). That is why I would love to be able to add a string like "I: N" at the front of the information currently being presented by the TradingChart.
Is this clearer?
Thank you for any help.