Hi there,

Does anyone know if it is possible to get the exact time of the high/low of a consolidated TradeBar?

I am getting the price high using the following code:

_PriceHigh = data[_Symbol].High;

And I was hopping to be able to get the corresponding price high time in a string variable by using something like:

_PriceHighTime = data[_Symbol].High.Time.ToString("yyyy-MM-dd HH:mm");

But this leads to the following error: Runtime Error: 'decimal' does not contain a definition for 'Time'   (Open Stacktrace)

Any help would be welcomed. Thanks!