sim_blan {exuber} | R Documentation |
Simulation of a Blanchard (1979) bubble process
Description
Simulation of a Blanchard (1979) rational bubble process.
Usage
sim_blan(n, pi = 0.7, sigma = 0.03, r = 0.05, b0 = 0.1, seed = NULL)
Arguments
n |
A positive integer specifying the length of the simulated output series. |
pi |
A positive value in (0, 1) which governs the probability of the bubble continuing to grow. |
sigma |
A positive scalar indicating the standard deviation of the innovations. |
r |
A positive scalar that determines the growth rate of the bubble process. |
b0 |
The initial value of the bubble. |
seed |
An object specifying if and how the random number generator (rng)
should be initialized. Either NULL or an integer will be used in a call to
|
Details
Blanchard's bubble process has two regimes, which occur with probability and
.
In the first regime, the bubble grows exponentially, whereas in the second regime, the bubble
collapses to a white noise.
With probability :
With probability :
where r
is a positive constant and .
Value
A numeric vector of length n
.
References
Blanchard, O. J. (1979). Speculative bubbles, crashes and rational expectations. Economics letters, 3(4), 387-389.
See Also
Examples
sim_blan(n = 100, seed = 123) %>%
autoplot()