get_etf_flow
Retrieve historical ETF flow data for BTC or ETH from the CoinGlass API, formatted as a Markdown table with tickers and dates for analysis.
Instructions
Fetch historical ETF flow data for BTC or ETH from CoinGlass API and return as a Markdown table.
Parameters:
coin (str): Cryptocurrency to query ('BTC' or 'ETH').
Returns:
str: Markdown table with ETF flow data (tickers as columns, dates as rows, with total column).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin | Yes |
Input Schema (JSON Schema)
{
"properties": {
"coin": {
"title": "Coin",
"type": "string"
}
},
"required": [
"coin"
],
"title": "get_etf_flowArguments",
"type": "object"
}