用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/taracodlabs/aiden --skill nse-delivery命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | nse-delivery |
| description | NSE delivery % data — surface stocks with high genuine buying |
| category | india |
| version | 1.0.0 |
| tags | nse, delivery, volume, equity, india, stock, delhivery, bulk, block |
| license | Apache-2.0 |
Analyze NSE delivery percentage data to find stocks with high genuine buying (delivery trades vs total traded volume), bulk deals, and block deals — filters intraday noise from real accumulation.
$symbol = "RELIANCE"
$headers = @{ "User-Agent" = "Mozilla/5.0"; "Referer" = "https://www.nseindia.com" }
Invoke-WebRequest -Uri "https://www.nseindia.com" -SessionVariable nse -Headers $headers | Out-Null
$resp = Invoke-RestMethod `
-Uri "https://www.nseindia.com/api/quote-equity?symbol=$symbol" `
-Headers $headers -WebSession $nse
[PSCustomObject]@{
Symbol = $symbol
TotalVolume = $resp.securityWiseDP.quantityTraded
DeliveryVolume = $resp.securityWiseDP.deliveryQuantity
DeliveryPercent = $resp.securityWiseDP.deliveryToTradedQuantity
}
$headers = @{ "User-Agent" = "Mozilla/5.0"; "Referer" = "https://www.nseindia.com" }
Invoke-WebRequest -Uri "https://www.nseindia.com" -SessionVariable nse -Headers $headers | Out-Null
$nifty50 = (Invoke-RestMethod `
-Uri "https://www.nseindia.com/api/equity-stockIndices?index=NIFTY%2050" `
-Headers $headers -WebSession $nse).data.symbol
$results = foreach ($sym in $nifty50) {
Start-Sleep -Milliseconds 300 # Throttle to avoid rate limits
try {
$q = Invoke-RestMethod `
-Uri "https://www.nseindia.com/api/quote-equity?symbol=$sym" `
-Headers $headers -WebSession $nse
$dp = $q.securityWiseDP.deliveryToTradedQuantity
if ($dp -gt 60) {
[PSCustomObject]@{ Symbol = $sym; DeliveryPct = $dp }
}
} catch {}
}
$results | Sort-Object DeliveryPercent -Descending
$headers = @{ "User-Agent" = "Mozilla/5.0"; "Referer" = "https://www.nseindia.com" }
Invoke-WebRequest -Uri "https://www.nseindia.com" -SessionVariable nse -Headers $headers | Out-Null
$resp = Invoke-RestMethod `
-Uri "https://www.nseindia.com/api/bulk-deal-archives?number=10&series=EQ&from=&to=&symbol=&csv=false" `
-Headers $headers -WebSession $nse
$resp.data | Select-Object symbol, clientName, buyOrSellFlag, quantityTraded, tradePrice, date
$headers = @{ "User-Agent" = "Mozilla/5.0"; "Referer" = "https://www.nseindia.com" }
Invoke-WebRequest -Uri "https://www.nseindia.com" -SessionVariable nse -Headers $headers | Out-Null
$resp = Invoke-RestMethod `
-Uri "https://www.nseindia.com/api/block-deal-archives?number=10&series=EQ&from=&to=&symbol=&csv=false" `
-Headers $headers -WebSession $nse
$resp.data | Select-Object symbol, clientName, buyOrSellFlag, quantityTraded, tradePrice, date
"What is the delivery percentage for HDFC Bank today?"
→ Fetch quote for HDFCBANK, extract deliveryToTradedQuantity — above 50% is considered healthy delivery.
"Which Nifty 50 stocks have delivery above 60% today?" → Iterate over Nifty 50 symbols, fetch each quote, filter by delivery percentage threshold.
"Were there any bulk deals in IT stocks today?" → Fetch bulk deals archive and filter by sector or symbol name containing "INFY", "TCS", "WIPRO".
Start-Sleep delay to avoid NSE rate limiting