Clearstreet borrow check
Skill clear-street/clearstreet-skills/skills/clearstreet-borrow-check
Check the borrow / short-sale / margin status of a US stock or ETF — easy-to-borrow flag, threshold-security and short-prohibited flags, long and short margin rates, PTP (publicly-traded partnership) flag, liquidation-only status, and average daily volume — and explain each flag in plain English. Use when the user asks "is X hard to borrow", "can I short X", "what's the margin rate on X", "is X on the threshold list", or "is X a PTP".From its SKILL.md
npx -y skills add clear-street/clearstreet-skills --skill clearstreet-borrow-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.0 KB, 412 tokens by cl100k_base, as published. Nobody here has run it
Borrow Check
Translate the borrow, margin, and short-sale flags on a US instrument into a plain-English verdict. Useful for short-sellers, options structurers, and margin traders.
Prerequisites
- Python 3.9+ (standard library only)
CLEARSTREET_API_KEYset in the environment — see the repo README
Quick start
python3 scripts/borrow.py NVDA
python3 scripts/borrow.py GME AAPL TSLA # multiple tickers
Usage
borrow.py SYMBOL [SYMBOL ...] [--json]
Examples
| Ask | Command |
|---|---|
| "Is GME hard to borrow?" | borrow.py GME |
| "Can I short TSLA?" | borrow.py TSLA |
| "What's the margin rate on NVDA?" | borrow.py NVDA |
| "Is BX a PTP?" | borrow.py BX |
| "Borrow status for NVDA, AMD, AVGO" | borrow.py NVDA AMD AVGO |
Output
Per symbol: a one-line verdict, a flag table, and plain-English notes on each non-default flag.
Workflow
- Run
python3 scripts/borrow.py <SYMBOL>.... - Present the output as-is — it's already explanatory. Don't add an instrument-identity table with option-only fields (expiry / strike) or the internal instrument id.
- For company context, chain to
clearstreet-fundamentals-deep-diveorclearstreet-omni-research.
See reference.md for the full field list and what each flag means.
Safety
Read-only. Does not place trades or recommend positions — it reports the operational and regulatory state of an instrument. Flags can change intraday. Output is informational, not investment advice.
What ships with it: 3 files
11.9 KB alongside SKILL.md, 2 of them executable
scripts/
- borrow.pyruns6.0 KB
- clearstreet_client.pyruns3.8 KB
- reference.md2.1 KB