This repository provides an overview of key market liquidity proxies and additional alternatives for crypto, bond, and stock markets. These proxies serve as indicators of market sentiment, risk appetite, and liquidity conditions.
The Global Liquidity Model provides a index of net liquidity in the financial system by aggregating key U.S. economic indicators from the FRED database. It combines the effects of the Federal Reserve balance sheet, bank reserves, reverse repo operations, and the U.S. Treasury General Account to estimate market liquidity. The model highlights how central bank actions and fiscal flows impact liquidity, offering a clear, data-driven perspective through an interactive stacked area chart.
- Ethereum / Bitcoin (ETH / BTC): Reflects liquidity preference and risk sentiment within the cryptocurrency market. Barring idiosyncratic events it acts as a proxy for broader market liquidity.
- QQQ / SPY Ratio: Reflects liquidity preference and risk sentiment within the US stock market. Shows the performance of high-beta QQQ (Nasdaq-100) vs. SPY (S&P 500).
Reflect funding stress in the broader market. When liquidity is ample, spreads tend to be tight, and they widen when liquidity is drained and stress builds in the system.
-
HYG / LQD Spread: Measures the risk premium between high-yield (HYG) and investment-grade bonds (LQD).
-
LQD / TNX Spread: Measures the risk premium between investment-grade bonds (LQD) and 10-year Treasury yields (UST-10Y).
Install package from PyPi: In order to install package use package manager of your choice, the most standard command is:
pip install liquidityRetrieve API Key: Depending on what charts/models you want to generate you will need corresponding key:
- For FRED Economic database request the key from FRED. Here are instructions.
- For crypto go to the Alphavantage.co website and retrieve free api-key.
Set the api-key as an environment variable.
export FRED_API_KEY="<your-api-key>"
export ALPHAVANTAGE_API_KEY="<your-api-key>"Below are some example code snippets:
Example 1: Generate liquidity model
from liquidity.models.liquidity import GlobalLiquidity
model = GlobalLiquidity()
model.show()The code will retrieve data using the FRED Economic database API, and generate the liquidity chart. Below example of generated chart:

To generate the model for a specific date range:
from liquidity.models.liquidity import GlobalLiquidity
from datetime import datetime
model = GlobalLiquidity(
start_date=datetime(2021, 1, 1),
end_date=datetime(2024, 12, 31)
)
model.show()Next examples demonstrate how to display multiple liquidity proxies charts combined into a single matrix, showcasing various liquidity proxies and date periods:
Example 2: Display a 2x2 Matrix from specific date
from datetime import datetime
from liquidity.models import YieldSpread, PriceRatio
from liquidity.visuals import ChartMatrix
# Define a ChartMatrix object with 4 models
liquidity_proxies = ChartMatrix(
models=[
YieldSpread("HYG", "LQD"),
YieldSpread("LQD", "UST-10Y"),
PriceRatio("QQQ", "SPY"),
PriceRatio("ETH", "BTC"),
],
start_date=datetime(2020, 1, 1),
)
# Display the matrix grid of charts
liquidity_proxies.show()This code will retrieve data from the available API providers for each of the specified liquidity proxies and display them in a 2x2 matrix chart. The charts will cover the period starting from January 1, 2020. Here's a preview of what the result will look like:

Example 3: Display a 2x3 Matrix of Charts for a specific year As the number of models increases, the method automatically determines the optimal layout for the matrix grid. For instance, if you have six charts, the layout will adjust accordingly.
Here’s an example of displaying a 2x3 matrix for the year 2024:
from datetime import datetime
from liquidity.models import YieldSpread, PriceRatio
from liquidity.visuals import ChartMatrix
# Define a ChartMatrix object with 6 models
liquidity_proxies = ChartMatrix(
models=[
YieldSpread("HYG", "LQD"),
YieldSpread("HYG", "UST-10Y"),
YieldSpread("LQD", "UST-10Y"),
PriceRatio("QQQ", "SPY"),
PriceRatio("BTC", "QQQ"),
PriceRatio("ETH", "BTC"),
],
start_date=datetime(2024, 1, 1),
end_date=datetime(2024, 12, 31),
)
# Display the matrix of charts
liquidity_proxies.show()This example retrieves data for the specified liquidity proxies over the year 2024 and displays the results in a 2x3 matrix. The layout will automatically adjust based on the number of models, ensuring the charts are well-organized and easy to interpret. Here is an example output for the 2024 data:

-
Optional start_date and end_date Parameters: Both the start_date and end_date parameters are optional. If not specified, the method will use the full available data range for each chart. However, be aware that this may cause the time frames of each chart to differ, as different symbols (e.g., "HYG", "QQQ", "ETH") may have varying lengths of historical data available from the API providers.
-
Automatic Layout Adjustment: As the number of models increases, the method will automatically adjust the layout of the matrix to ensure the charts are displayed in a clean, readable format.
-
Data Retrieval: The charts will pull data from available API providers once a day (subsequent calss will be loaded from cache) for the specified models, ensuring accurate and up-to-date information.
-
Custom Date Ranges: If you want to focus on specific time periods, you can provide both start_date and end_date. Otherwise, the method will display data for the full available range.
This repository is based on market data APIs providing free access to data.
- Cryptocurrency Prices: Alpaca.markets
- FRED Economic Database: FRED
- Other Market Data: Alphavantage.co
In the future I plan to add even more data providers and liquidity proxies.