market_models | R Documentation |
The basic disequilibrium model consists of three equations. Two of them are the demand and supply equations. In addition, the model replaces the market clearing condition with the short side rule. The model is estimated using full information maximum likelihood.
D_{nt} = X_{d,nt}'β_{d} + u_{d,nt},
S_{nt} = X_{s,nt}'β_{s} + u_{s,nt},
Q_{nt} = \min\{D_{nt},S_{nt}\}.
The disequilibrium model with deterministic price adjustment consists
of four equations. The two market equations, the short side rule and price
evolution equation. The first two equations are stochastic. The price
equation is deterministic. The sample is separated based on the sign of
the price changes as in the diseq_directional
model.
The model is estimated using full information maximum likelihood.
D_{nt} = X_{d,nt}'β_{d} + P_{nt}α_{d} + u_{d,nt},
S_{nt} = X_{s,nt}'β_{s} + P_{nt}α_{s} + u_{s,nt},
Q_{nt} = \min\{D_{nt},S_{nt}\},
Δ P_{nt} = \frac{1}{γ} ≤ft( D_{nt} - S_{nt} \right).
The directional disequilibrium model consists of three equations and a separation rule. The market is described by a linear demand, a linear supply equation and the short side rule. The separation rule splits the sample into states of excess supply and excess demand. If a price change is positive at the time point of the observation, then the observation is classified as being in an excess demand state. Otherwise, it is assumed that it represents an excess supply state. The model is estimated using full information maximum likelihood.
D_{nt} = X_{d,nt}'β_{d} + u_{d,nt},
S_{nt} = X_{s,nt}'β_{s} + u_{s,nt},
Q_{nt} = \min\{D_{nt},S_{nt}\},
Δ P_{nt} ≥ 0 \Longrightarrow D_{nt} ≥ S_{nt}.
The disequilibrium model with stochastic price adjustment is described by a system of four equations. Three of of them form a stochastic linear system of market equations equations coupled with a stochastic price evolution equation. The fourth equation is the short side rule. In contrast to the deterministic counterpart, the model does not impose any separation rule on the sample. It is estimated using full information maximum likelihood.
D_{nt} = X_{d,nt}'β_{d} + P_{nt}α_{d} + u_{d,nt},
S_{nt} = X_{s,nt}'β_{s} + P_{nt}α_{s} + u_{s,nt},
Q_{nt} = \min\{D_{nt},S_{nt}\},
Δ P_{nt} = \frac{1}{γ} ≤ft( D_{nt} - S_{nt} \right) + X_{p,nt}'β_{p} + u_{p,nt}.
The equilibrium model consists of thee equations. The demand, the supply and the market clearing equations. The model can be estimated using both full information maximum likelihood and two-stage least squares.
D_{nt} = X_{d,nt}'β_{d} + P_{nt}α_{d} + u_{d,nt},
S_{nt} = X_{s,nt}'β_{s} + P_{nt}α_{s} + u_{s,nt},
Q_{nt} = D_{nt} = S_{nt}.
A necessary identification condition is that there is at least one control that is exclusively part of the demand and one control that is exclusively part of the supply equation. In the first stage of the two-stage least square estimation, prices are regressed on remaining controls from both the demand and supply equations. In the second stage, the demand and supply equation is estimated using the fitted prices instead of the observed.
market_model-class
: Base class for market models
disequilibrium_model-class
: Base class for disequilibrium models
diseq_basic-class
: Basic disequilibrium model with unknown sample
separation.
diseq_deterministic_adjustment-class
: Disequilibrium model with deterministic price dynamics.
diseq_directional-class
: Directional disequilibrium model with sample separation.
diseq_stochastic_adjustment-class
: Disequilibrium model with stochastic price dynamics.
equilibrium_model-class
: Equilibrium model
logger
Logger object.
subject_columns
Column name for the subject identifier.
time_column
Column name for the time point identifier.
explanatory_columns
Vector of explanatory column names for all model's equations.
data_columns
Vector of model's data column names. This is the union of the quantity, price and explanatory columns.
columns
Vector of primary key and data column names for all model's equations.
model_tibble
Model data tibble
.
model_type_string
Model type string description.
system
Model's system of equations.
initialize_market_model
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.