Thank you very much. It's working, but how I can get averaged corr over the set of realizations, for example,
500? I trying to make it by the folowing code, but it seems that averaging doesn't working.
TransformedProcess[E^(I*b[t]), b \[Distributed] WienerProcess[], t];
data = RandomFunction[\[ScriptCapitalP], {0, 10, 0.1}];
corr = CorrelationFunction[data, {data["PathLength"] - 1}];
data1 = Table[corr, {i, 500}];
data2 = Sum[data1[[i]], {i, 1, 500}];
data3 = data2/500;
ListPlot[{Re[data3]}]