This skill enables safe, up‑to‑date stock screening using the Meixiang (妙想) stock‑screening service. It supports custom filters on market, financial indicators, and sector/category constraints, returning a full data table (CSV) with Chinese column headers and a supplemental description file.
MX_APIKEY:```bash
export MX_APIKEY="your_api_key_here"
```
curl is installed (standard on macOS).keyword – the screening condition (e.g., "今日涨幅2%的股票")pageNo – page number (default 1)pageSize – number of rows per page (max 100, adjust as needed)```bash
curl -X POST \
--location 'https://mkapi2.dfcfs.com/finskillshub/api/claw/stock-screen' \
--header 'Content-Type: application/json' \
--header "apikey:${MX_APIKEY}" \
--data '{"keyword":"
```
status / message – overall request success.data.code / data.msg – business‑level status.data.data.result.columns – column definitions.data.data.result.dataList – rows of stock data.responseConditionList – condition statistics.key to its Chinese title from the columns array, then build a CSV where the header line uses the Chinese titles.```bash
# Save raw JSON
curl ... > mx_select_stock_raw.json
# Save CSV