pinescript
15
总安装量
14
周安装量
#22764
全站排名
安装命令
npx skills add https://github.com/ajoslin/dot --skill pinescript
Agent 安装分布
opencode
14
github-copilot
14
codex
14
kimi-cli
14
gemini-cli
14
amp
14
Skill 文档
Pine Script
Overview
Provide Pine Script v6 guidance for indicators, strategies, and libraries. Apply non-repainting and performance best practices. Support generating Pine Script via other languages (TypeScript, Python, etc.) by keeping generated output compliant with v6 guidance. Run linting with the bundled script wrapper around pinescript-lint.
Workflow
- Determine script type and version
- Add
//@version=6and chooseindicator(),strategy(), orlibrary().
- Add
- Apply execution model and repainting safeguards
- Use
barstate.isconfirmed, historical offsets, andrequest.security()lookahead guidance.
- Use
- Optimize performance and state
- Prefer
var/varipfor state, limit loops, precompute constants, avoid redundant security calls.
- Prefer
- Generate Pine Script from other languages when needed
- Emit Pine Script v6-compliant output and validate by inspection or TradingView editor diagnostics.
- Lint before delivery (manual Pine Script only)
- Run
node scripts/pinescript_lint.mjs <path>to check formatting and basic issues.
- Run
References
- Pine Script v6 concepts and best practices:
references/pinescript_v6.md - Linting workflow and linter configuration:
references/linting.md
Scripts
- Lint Pine Script files:
scripts/pinescript_lint.mjs - Lint script tests:
scripts/pinescript_lint.test.mjs