January 18th, 2008, 7:14 am
Hi all, good morning In my knowledge there is basically two types of model for daily closing price of an asset.Model-1Assumption : log of daily closing price follows random walk. therefore,ln(P[t+1]) given P[t] ~ N(ln(P[t]), sigma^2) Note : Instead of modeling ln(P), I can model P itself using the same configuration. But then I need to acknowledge there is a positive probability that Price can be negative, therefore I modeled ln(P).hence : ln(P[t+1]/P[t]) given P[t] ~ N(0, sigma^2).Model-2This model is based on following differential equation :d(P[t]) = mu*P[t]&dt + sigma*P[t]*d(W[t]) W[t] is assumed Weiner process i.e. d(W[t]) ~ N(0,dt)Closed from solution of that is :d(ln(P[t])) = (mu-0.5*sigma^2)*dt + sigma*d(W[t]) Hence : d(ln(P[t])) ~ N((mu-0.5*sigma^2)*dt , sigma^2*dt)If I take dt=1 then,ln(P[t+1]/P[t]) ~ N((mu-0.5*sigma^2), sigma^2)Hence E[ln(P[t+1]/P[t])] = mu-0.5*sigma^2 = -0.5*sigma^2 [if mu=0]However for model-1, E[ln(P[t+1]/P[t])] = 0My question is which model is correct? Is there any procedure to link those two model?Your help will be highly appreciated.Regards,