Thanks Eric for below. There's also a very nice book by Stefano Iacus called "Simulation and Inference for Stochastic<br />Differential Equations" with R examples.  It doesn't seem to get much press but I bought it recently and REALLY like it. Just the right level of theory and practicality, atleast for me. It's not a Karatzas type of book or even Oskendal. Much better I think.<br /><br />                                                                                                                                          Mark<br /><br /><br /><p>On Jun 17, 2009, <strong>Eric Zivot</strong> &lt;ezivot@u.washington.edu&gt; wrote: </p><div class="replyBody"><blockquote style="border-left: 2px solid #267fdb; margin: 0pt 0pt 0pt 1.8ex; padding-left: 1ex">The Euler discretization of the Vasicek model is misspecified (i.e., it is not the exact discretization based on the true transition density) and so the least squares estimates will be biased (see Andrew Lo's Econometric Theory paper on estimating continuous time models from their discrete time counterparts, and Broze, Scaillet and Zakoian's Journal of Empirical Finance paper on estimating continuous time models from their discretized counterparts). This bias is typically not too large. You can eliminate this bias using an indirect inference estimation technique (see the book by Gourieroux and Monfort for an example applied to the Vasicek model). Alternatively, you can estimate the Vasicek model by exact mle using the code in the nice sde package (see also the accompanying book for more explanation). <br />ez<br /><br />****************************************************************<br />*  Eric Zivot                                                         *<br />*  Professor and Gary Waterman Distinguished Scholar           *<br />*  Department of Economics                                     *<br />*  Adjunct Professor of Finance                                *<br />*  Adjunct Professor of Statistics<br />*  Box 353330                  email:  <a href="mailto:ezivot@u.washington.edu" target="_blank" class="parsedEmail">ezivot@u.washington.edu</a> *<br />*  University of Washington    phone:  206-543-6715            *<br />*  Seattle, WA 98195-3330                                      *                                                           *<br />*  www:  <a href="http://faculty.washington.edu/ezivot" target="_blank" class="parsedLink">http://faculty.washington.edu/ezivot</a>                  *<br />****************************************************************<br /><br />On Wed, 17 Jun 2009, Schaeffer, Derek BGI SF wrote:<br /><br />&gt;<br />&gt; Hi Marco,<br />&gt;<br />&gt; The discrete time Vasicek model at partition size dt (e.g. 1/252) is<br />&gt; given by:<br />&gt;<br />&gt; X(t) - X(t-dt) = [a*b] *  dt - [b * X(t-dt)] * dt + s_e * e,   e ~<br />&gt; N(0,1)<br />&gt;<br />&gt; Run the following regression:<br />&gt;<br />&gt; X(t) = A + B X(t-1) + v,  v ~ N(0,s_v^2)<br />&gt;<br />&gt; The continuous-time parameters can be recovered from the regression<br />&gt; estimates using:<br />&gt;<br />&gt; b   = -A/B<br />&gt; a   = -ln(1 + B)/dt<br />&gt; s_e = s_v * sqrt(2 * ln(1 + B) / dt) / sqrt( (1+B)^2 - 1)<br />&gt;<br />&gt; Best,<br />&gt; Derek M. Schaeffer, Ph.D.<br />&gt; Principal<br />&gt; Senior Research Officer<br />&gt;<br />&gt; TEL   415 894 6427<br />&gt; CELL  415 516 9558<br />&gt; FAX   415 618 1824<br />&gt; <a href="mailto:derek.schaeffer@barclaysglobal.com" target="_blank" class="parsedEmail">derek.schaeffer@barclaysglobal.com</a><br />&gt;<br />&gt; Barclays Global Investors 400 Howard Street San Francisco, CA 94105<br />&gt;<br />&gt;<br />&gt;<br />&gt; -----Original Message-----<br />&gt; From: <a href="mailto:r-sig-finance-bounces@stat.math.ethz.ch" target="_blank" class="parsedEmail">r-sig-finance-bounces@stat.math.ethz.ch</a><br />&gt; [mailto:<a href="mailto:r-sig-finance-bounces@stat.math.ethz.ch" target="_blank" class="parsedEmail">r-sig-finance-bounces@stat.math.ethz.ch</a>] On Behalf Of Zanella<br />&gt; Marco<br />&gt; Sent: Wednesday, June 17, 2009 9:41 AM<br />&gt; To: <a href="mailto:r-sig-finance@stat.math.ethz.ch" target="_blank" class="parsedEmail">r-sig-finance@stat.math.ethz.ch</a><br />&gt; Subject: [R-SIG-Finance] Vasicek model estimation via linear regression<br />&gt;<br />&gt; Hi,<br />&gt; I have to check mean reversion with a Vasicek model for a time series.<br />&gt; As you certainly know Vasicek process is discribed by following formula:<br />&gt;<br />&gt; dXt = a(b-Xt)dt + sdWt   (1)<br />&gt;<br />&gt; <a href="http://en.wikipedia.org/wiki/Vasicek_model" target="_blank" class="parsedLink">http://en.wikipedia.org/wiki/Vasicek_model</a><br />&gt;<br />&gt; To estimate the parameters in my data I can use this expression:<br />&gt;<br />&gt; Xt - Xt-1 = a(b-Xt-1)Dt + se   (2)<br />&gt;<br />&gt; where:<br />&gt; Xt: time series at time t<br />&gt; Xt-1: time series at time t-1<br />&gt; a: unknown parameter<br />&gt; b: unknown parameter<br />&gt; Dt: in my case I can assimilate it = 1<br />&gt; S: standard deviation<br />&gt; e: error ~N(0,1)<br />&gt;<br />&gt; Basically, I want to estimate unknown parameters a and b using a linear<br />&gt; regression. Usually I work on linear regression with lm() function but I<br />&gt; don't undertand how formulate my (2) model in to lm command. Can anyone<br />&gt; give me some suggestions?<br />&gt;<br />&gt; Thanks in advance.<br />&gt;<br />&gt; Regards,<br />&gt;<br />&gt; Marco<br />&gt;<br />&gt; ____________________________________________________________<br />&gt;<br />&gt;<br />&gt; _______________________________________________<br />&gt; <a href="mailto:R-SIG-Finance@stat.math.ethz.ch" target="_blank" class="parsedEmail">R-SIG-Finance@stat.math.ethz.ch</a> mailing list<br />&gt; <a href="https://stat.ethz.ch/mailman/listinfo/r-sig-finance" target="_blank" class="parsedLink">https://stat.ethz.ch/mailman/listinfo/r-sig-finance</a><br />&gt; -- Subscriber-posting only.<br />&gt; -- If you want to post, subscribe first.<br />&gt;<br />&gt;<br />&gt; --<br />&gt;<br />&gt; This message and any attachments are confidential, pro...{{dropped:10}}<br /><br />_______________________________________________<br /><a href="mailto:R-SIG-Finance@stat.math.ethz.ch" target="_blank" class="parsedEmail">R-SIG-Finance@stat.math.ethz.ch</a> mailing list<br /><a href="https://stat.ethz.ch/mailman/listinfo/r-sig-finance" target="_blank" class="parsedLink">https://stat.ethz.ch/mailman/listinfo/r-sig-finance</a><br />-- Subscriber-posting only.<br />-- If you want to post, subscribe first.<br /></blockquote></div>