action portfoliooptimizer_post_assets_correlation_matrix_informativeness { label: "Correlation Matrix Informativeness" description: "Compute the informativeness of an asset correlation matrix, using one of the following distance metrics:\n* Euclidean distance (default), which is the distance induced by [the Frobenius norm](https://en.wikipedia.org/wiki/Matrix_norm#Frobenius_norm)\n* Correlation matrix distance, defined in the second reference, which corresponds to [the cosine distance](https://en.wikipedia.org/wiki/Cosine_similarity) between the two vectorized asset correlation matrices\n* Bures distance, defined in the third reference\n\n References\n * [Austin J. Brockmeier and Tingting Mu and Sophia Ananiadou and John Y. Goulermas, Quantifying the Informativeness of Similarity Measurements, Journal of Machine Learning Research, 2017](http://jmlr.org/papers/v18/16-296.html)\n * [M. Herdin, N. Czink, H. Ozcelik and E. Bonek, Correlation matrix distance, a meaningful measure for evaluation of non-stationary MIMO channels, 2005 IEEE 61st Vehicular Technology Conference, 2005, pp. 136-140 Vol. 1](https://ieeexplore.ieee.org/document/1543265)\n * [Rajendra Bhatia, Tanvi Jain, Yongdo Lim, On the Bures–Wasserstein distance between positive definite matrices, Expositiones Mathematicae, Volume 37, Issue 2, 2019](https://www.sciencedirect.com/science/article/pii/S0723086918300021)\n" provider: portfoliooptimizer method: POST path: "/assets/correlation/matrix/informativeness" encoding: json input: { required: ["assets", "assetsCorrelationMatrix"] properties: { assets: { type: "integer" } assetsCorrelationMatrix: { type: "array" description: "assetsCorrelationMatrix[i][j] is the correlation between the asset i and the asset j" items: { type: "array" items: { type: "number" } } } distanceMetric: { type: "string" description: "The distance metric to use to compute the informativeness of the asset correlation matrix" enum: ["euclidean", "correlationMatrix", "bures"] } } } output: { type: "object" required: ["assetsCorrelationMatrixInformativeness"] properties: { assetsCorrelationMatrixInformativeness: { type: "number" description: "The informativeness of the asset correlation matrix" } } } }