Not yet, but you can save it as CSV, and then open it with a text editor or the ZHistory editor.

For converting a t8 file to CSV:

string InName = "SPY.t8";
string OutName = "SPY.csv";
string Format = "%Y/%m/%d,i7,f6,i8,f1,f2";

void main()
{
dataLoad(1,InName,9);
dataSaveCSV(1,Format,OutName);
}