From pinescript
Generates Pine Script indicators and strategies from natural language descriptions. Useful for quickly prototyping TradingView scripts with templates and best practices.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pinescript:createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Creating new Pine Script from your description: $ARGUMENTS
Creating new Pine Script from your description: $ARGUMENTS
Analyze the request to determine:
Check for relevant templates in:
templates/indicators/ - For indicator patternstemplates/strategies/ - For strategy patternstemplates/utilities/ - For helper functionsCreate the file at projects/[descriptive-name].pine
Implement with best practices:
//@version=6 declaration//@strategy_alert_message for strategies (after the strategy() call)Add basic debugging if helpful
For Indicators:
//@version=6
indicator("Title", overlay=true)
// Implementation
For Strategies:
//@version=6
strategy("Title", overlay=true)
//@strategy_alert_message {{strategy.order.alert_message}}
// Implementation
Before delivering:
npx claudepluginhub traderspost/pinescript-agentsGuides users through creating new Pine Script projects for TradingView indicators and strategies step by step.
Writes production-quality Pine Script v6 code for TradingView indicators and strategies, following TradingView guidelines and best practices.
Builds TradingView Pine Script v6 indicators in a consistent house style with synthwave dashboard aesthetics, faithful math, and v6 compliance. Handles porting from Python or other Pine scripts.