Models For Markets in Equilibrium and Disequilibrium

License: MIT

The markets package provides tools to estimate and analyze an equilibrium and four disequilibrium models. The equilibrium model can be estimated with either two-stage least squares or with full information maximum likelihood. The two methods are asymptotically equivalent. The disequilibrium models are estimated using full information maximum likelihood. The likelihoods can be estimated both with independent and correlated demand and supply shocks. The optimization of the likelihoods can be performed either using analytic expressions or numerical approximations of their gradients. A detailed overview of the package’s functionality, usage examples, and design traits is given in Karapanagiotis (2024).

A quick model tour

The five models of the package are described by systems of simultaneous equations, with the equilibrium system being the only linear one, while the disequilibrium systems being non-linear. All models specify the demand and the supply side of the market by a linear (in parameters) equation. The remaining equations of each model, if any, further specify the market structure.

The equilibrium model

The equilibrium model adds the market-clearing condition to the demand and supply equations of the system. For the system to be identifiable, at least one variable on the demand side must not be present on the supply side and vice versa. This model assumes that the market observations always represent equilibrium points in which the demanded and supplied quantities are equal. The model can be estimated using two-stage least squares (Theil 1953) or full information maximum likelihood (Karapanagiotis, n.d.). Asymptotically, these methods are equivalent (Balestra and Varadharajan-Krishnakumar 1987).


The basic disequilibrium model

The basic model is the simplest disequilibrium model of the package as it basically imposes no assumption on the market structure regarding price movements (Fair and Jaffee 1972; Maddala and Nelson 1974). In contrast with the equilibrium model, the market-clearing condition is replaced by the short-side rule, which stipulates that the minimum between the demanded and supplied quantities is observed. The econometrician does not need to specify whether an observation belongs to the demand or the supply side since the estimation of the model will allocate the observations on the demand or supply side so that the likelihood is maximized.


The directional disequilibrium model

The directional model attaches an additional equation to the system of the basic model. The added equation is a sample separation condition based on the direction of the price movements (Fair and Jaffee 1972; Maddala and Nelson 1974). When prices increase at a given date, an observation is assumed to belong on the supply side. When prices fall, an observation is assumed to belong on the demand side. In short, this condition separates the sample before the estimation and uses this separation as additional information in the estimation procedure. Although, when appropriate, more information improves estimations, it also, when inaccurate, intensifies misspecification problems. Therefore, the additional structure of the directional model does not guarantee better estimates in comparison with the basic model.


A disequilibrium model with deterministic price dynamics

The separation rule of the directional model classifies observations on the demand- or supply-side based in a binary fashion, which is not always flexible, as observations that correspond to large shortages/surpluses are treated the same as observations that correspond to small shortages/ surpluses. The deterministic adjustment model of the package replaces this binary separation rule with a quantitative one (Fair and Jaffee 1972; Maddala and Nelson 1974). The magnitude of the price movements is analogous to the magnitude of deviations from the market-clearing condition. This model offers a flexible estimation alternative, with one extra degree of freedom in the estimation of price dynamics, that accounts for market forces that are in alignment with standard economic reasoning. By letting approach zero, the equilibrium model can be obtained as a limiting case of this model.


A disequilibrium model with stochastic price dynamics

The last model of the package extends the price dynamics of the deterministic adjustment model by adding additional explanatory variables and a stochastic term. The latter term, in particular, makes the price adjustment mechanism stochastic and, deviating from the structural assumptions of models and , abstains from imposing any separation assumption on the sample (Maddala and Nelson 1974; Quandt and Ramsey 1978). The estimation of this model offers the highest degree of freedom, accompanied, however, by a significant increase in estimation complexity, which can hinder the stability of the procedure and the numerical accuracy of the outcomes.


Installation and documentation

The released version of markets can be installed from CRAN with:

install.packages("markets")

The source code of the in-development version can be downloaded from GitHub.

After installing it, there is a basic-usage example installed with it. To see it type the command

vignette('basic_usage')

Online documentation is available for both the released and in-development versions of the package. The documentation files can also be accessed in R by typing

?? markets

An older version of the package (see diseq) was presented in the session Trends, Markets, Models of the useR!2021 conference. However, the presented user interface is deprecated and it is recommended to follow (Karapanagiotis 2024) for the latest interface. The recording of the session can be found in the video that follows. The presentation slides of the talk are also available here.

Session Recording

A practical example

This is a basic example that illustrates how a model of the package can be estimated. The package is loaded in the standard way.

library(markets)

The example uses simulated data. The markets package offers a function to simulate data from data-generating processes that correspond to the models that the package provides.

model_tbl <- simulate_data(
  "diseq_basic", 10000, 5,
  -1.9, 36.9, c(2.1, -0.7), c(3.5, 6.25),
  2.8, 34.2, c(0.65), c(1.15, 4.2),
  NA, NA, c(NA),
  seed = 42
)

Models are initialized by a constructor. In this example, a basic disequilibrium model is estimated. There are also other models available (see Design and functionality). The constructor sets the model’s parameters and performs the necessary initialization processes. The following variables specify this example’s parameterization.

verbose <- 0
correlated_shocks <- TRUE

The model is estimated with default options by a simple call. See the documentation of estimate for more details and options.

fit <- diseq_basic(
  Q | P | id | date ~ P + Xd1 + Xd2 + X1 + X2 | P + Xs1 + X1 + X2,
  model_tbl, correlated_shocks = correlated_shocks, verbose = verbose
)

The results can be inspected in the usual fashion via summary.

summary(fit)
## Basic Model for Markets in Disequilibrium:
##   Demand RHS        :   D_P + D_Xd1 + D_Xd2 + D_X1 + D_X2
##   Supply RHS        :   S_P + S_Xs1 + S_X1 + S_X2
##   Short Side Rule   : Q = min(D_Q, S_Q)
##   Shocks            : Correlated
##   Nobs              : 50000
##   Sample Separation : Not Separated
##   Quantity Var      : Q
##   Price Var         : P
##   Key Var(s)        : id, date
##   Time Var          : date
## 
## Maximum likelihood estimation:
##   Method              : BFGS
##   Convergence Status  : success
##   Starting Values     :
##        D_P    D_CONST      D_Xd1      D_Xd2       D_X1       D_X2        S_P 
##     1.2430    32.8102     0.6986    -0.2362     1.9377     4.8826     1.2390 
##    S_CONST      S_Xs1       S_X1       S_X2 D_VARIANCE S_VARIANCE        RHO 
##    32.8104     0.4500     1.9376     4.8819     3.8528     4.2008     0.0000 
## 
## Coefficients:
##                Estimate  Std. Error      z value  Pr(>|z|) 
##  D_P        -1.924717799 0.013835435 -139.1150898 0.0000000 ***
##  D_CONST    36.937193225 0.021936141 1683.8510012 0.0000000 ***
##  D_Xd1       2.110785687 0.009406163  224.4045458 0.0000000 ***
##  D_Xd2      -0.691555109 0.008147975  -84.8744788 0.0000000 ***
##  D_X1        3.521398292 0.009739125  361.5723353 0.0000000 ***
##  D_X2        6.262824545 0.009398391  666.3719793 0.0000000 ***
##  S_P         2.797103009 0.007373930  379.3232361 0.0000000 ***
##  S_CONST    34.188334232 0.007529995 4540.2861998 0.0000000 ***
##  S_Xs1       0.663960433 0.005615403  118.2391348 0.0000000 ***
##  S_X1        1.139702284 0.006086385  187.2543982 0.0000000 ***
##  S_X2        4.203214203 0.005977236  703.2036046 0.0000000 ***
##  D_VARIANCE  0.996663485 0.012531211   79.5344912 0.0000000 ***
##  S_VARIANCE  1.006627503 0.008313621  121.0817230 0.0000000 ***
##  RHO        -0.009218528 0.026590170   -0.3466893 0.7288247  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## -2 log L: 138460

Design and functionality

The equilibrium model can be estimated either using two-stage least squares or full information maximum likelihood. The two methods are asymptotically equivalent. The class for which both of these estimation methods are implemented is

In total, there are four disequilibrium models, which are all estimated using full information maximum likelihood. By default, the estimations use analytically calculated gradient expressions, but the user can override this behavior. The classes that implement the four disequilibrium models are

The package organizes these classes in a simple object-oriented hierarchy.

Concerning post-estimation analysis, the package offers functionality to calculate

Alternative packages

The estimation of the basic model is also supported by the package Disequilibrium. By default, the Disequilibrium package numerically approximates the gradient when optimizing the likelihood. In contrast, markets uses analytically calculated expressions for the likelihood, which can reduce the duration of estimating the model. In addition, it allows the user to override this behavior and use the numerically approximated gradient. There is no alternative package that supports the out-of-the-box estimation of the other three disequilibrium models of markets.

Planned extensions

The package is planned to be expanded in the following ways:

  1. The package should become more inclusive by adding additional market models.
  2. Single-command functionality for the market-clearing tests (e.g. (Karapanagiotis, n.d.; Hwang 1980; Quandt 1978)) should be included in the package.
  3. Alternative estimation methods (e.g. (Zilinskas and Bogle 2006; Quandt and Ramsey 1978)) could also be implemented.

Contributors

Pantelis Karapanagiotis

Feel free to join, share, contribute, and distribute.

License

The code is distributed under the MIT License.

References

Balestra, Pietro, and Jayalakshmi Varadharajan-Krishnakumar. 1987. “Full Information Estimations of a System of Simultaneous Equations with Error Component Structure.” Econometric Theory 3 (2): 223–46. https://doi.org/10.1017/S0266466600010318.

Fair, Ray C., and Dwight M. Jaffee. 1972. “Methods of Estimation for Markets in Disequilibrium.” Econometrica 40 (3): 497. https://doi.org/10.2307/1913181.

Hwang, Hae-shin. 1980. “A Test of a Disequilibrium Model.” Journal of Econometrics 12 (3): 319–33. https://doi.org/10.1016/0304-4076(80)90059-7.

Karapanagiotis, Pantelis. 2024. “The R Package markets: Estimation Methods for Markets in Equilibrium and Disequilibrium.” Journal of Statistical Software 108 (2): 1–39. https://doi.org/10.18637/jss.v108.i02.

———. n.d. “The Assessment of Market-Clearing as a Model Selection Problem.” Working Paper. https://doi.org/10.2139/ssrn.3525622.

Maddala, G. S., and Forrest D. Nelson. 1974. “Maximum Likelihood Methods for Models of Markets in Disequilibrium.” Econometrica 42 (6): 1013. https://doi.org/10.2307/1914215.

Quandt, Richard E. 1978. “Tests of the Equilibrium Vs. Disequilibrium Hypotheses.” International Economic Review 19 (2): 435. https://doi.org/10.2307/2526311.

Quandt, Richard E., and James B. Ramsey. 1978. “Estimating Mixtures of Normal Distributions and Switching Regressions.” Journal of the American Statistical Association 73 (364): 730–38. https://doi.org/10.1080/01621459.1978.10480085.

Theil, H. 1953. “Repeated Least Squares Applied to Complete Equation Systems.” The Hague: Central Planning Bureau, 2–5.

Zilinskas, Julius, and Ian David Lockhart Bogle. 2006. “Balanced Random Interval Arithmetic in Market Model Estimation.” European Journal of Operational Research 175 (3): 1367–78. https://doi.org/10.1016/j.ejor.2005.02.013.