ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年5月6日 12:31
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill nse-fii-diiコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | nse-fii-dii |
| description | NSE FII/DII daily flows — gauge institutional Indian equity activity |
| category | india |
| version | 1.0.0 |
| tags | fii, dii, institutional, flow, nse, india, equity, market, foreign |
| license | Apache-2.0 |
Track FII (Foreign Institutional Investors) and DII (Domestic Institutional Investors) daily net buying and selling activity on NSE — a leading indicator of market sentiment.
$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/fiidiiTradeReact" `
-Headers $headers -WebSession $nse
$resp | Select-Object date,
@{N='FII_Buy';E={$_.buyValue}}, @{N='FII_Sell';E={$_.sellValue}},
@{N='FII_Net';E={$_.netValue}} |
Select-Object -First 1
$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/fiidiiTradeReact" `
-Headers $headers -WebSession $nse
$resp | Select-Object -First 10 | ForEach-Object {
[PSCustomObject]@{
Date = $_.date
FII_Net = [math]::Round($_.fiinet, 2)
DII_Net = [math]::Round($_.diinet, 2)
FII_Buy = [math]::Round($_.fiibuy, 2)
FII_Sell = [math]::Round($_.fiisell, 2)
DII_Buy = [math]::Round($_.diibuy, 2)
DII_Sell = [math]::Round($_.diisell, 2)
}
} | Format-Table -AutoSize
$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/fiidiiTradeReact" `
-Headers $headers -WebSession $nse
$n = 20
$cumFII = ($resp | Select-Object -First $n | ForEach-Object { $_.fiinet } | Measure-Object -Sum).Sum
$cumDII = ($resp | Select-Object -First $n | ForEach-Object { $_.diinet } | Measure-Object -Sum).Sum
Write-Host "Last $n days cumulative:"
Write-Host "FII Net: ₹$([math]::Round($cumFII,2)) Cr"
Write-Host "DII Net: ₹$([math]::Round($cumDII,2)) Cr"
$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/fiidiiTradeReact" -Headers $headers -WebSession $nse
$streak = 0; $direction = ""
foreach ($day in $resp) {
if ($day.fiinet -gt 0) { $d = "BUY" } else { $d = "SELL" }
if ($d -eq $direction) { $streak++ } else { $direction = $d; $streak = 1 }
break
}
Write-Host "FII currently on $streak-day $direction streak"
"Are FIIs buying or selling this week?" → Fetch last 5 days of FII data, sum net values, display buying/selling trend.
"What was FII activity over the past month?" → Fetch 20 records from the API and calculate cumulative FII net flow.
"Show FII vs DII activity for the last 10 sessions" → Tabulate both FII_Net and DII_Net for the 10 most recent trading days.
https://www.nseindia.com first