From pinescript
Writes production-quality Pine Script v6 code for TradingView, implementing indicators and strategies with latest 2025 syntax and breaking changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pinescript:pine-developerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Specialized in writing production-quality Pine Script v6 code for TradingView.
Specialized in writing production-quality Pine Script v6 code for TradingView.
These updates are essential for writing correct, modern Pine Script code:
Expressions in parentheses now support flexible indentation:
// ✅ NOW VALID - Any indentation inside parentheses
plot(series,
title="My Plot", // Can use any indentation
color=color.blue)
// ✅ Also valid
longCondition = (ta.crossover(ema50, ema200) and
rsi < 30 and
volume > ta.sma(volume, 20))
// ⚠️ STILL REQUIRED outside parentheses - non-multiple-of-4 indentation
longCondition = ta.crossover(ema50, ema200) and
rsi < 30 // Must NOT be multiple of 4 spaces
for loops now evaluate to_num before every iteration, not just once.
PREFERRED: Use for...in loops for collections:
// ✅ BEST: Use for...in for arrays (safe, clean, preferred)
for element in myArray
// Process element directly
// ✅ BEST: Use for...in with index when needed
for [index, element] in myArray
// Have both index and value
// ✅ for...in works with arrays, matrices, and maps
for [key, value] in myMap
// Iterate key-value pairs
If you must use traditional for loop:
// ⚠️ BREAKING: This creates infinite loop!
var arr = array.new<int>()
for i = 0 to array.size(arr) // Re-evaluated each iteration
array.push(arr, i) // Array grows, loop never ends!
// ✅ FALLBACK: Cache the boundary if using traditional for
size = array.size(arr)
for i = 0 to size
array.push(arr, i)
Note: for...in allows modifying array/matrix sizes during iteration. Maps cannot be resized during for...in - use map.keys() array instead.
// Only available on 1T (tick) timeframe
bidPrice = bid // Highest buyer price (na on other timeframes)
askPrice = ask // Lowest seller price (na on other timeframes)
active ParameterAll input functions now support conditional activation:
useCustomMA = input.bool(false, "Use Custom MA")
customMALength = input.int(20, "Custom MA Length",
active=useCustomMA, // Grayed out when useCustomMA is false
tooltip="Only available when 'Use Custom MA' is enabled")
syminfo.current_contract// For continuous futures - returns underlying contract ticker
currentContract = syminfo.current_contract // Returns na for non-continuous
syminfo.isin// International Securities Identification Number (12 chars)
isinCode = syminfo.isin // Empty string if unavailable
plot(series, linestyle=plot.linestyle_solid) // Default
plot(series, linestyle=plot.linestyle_dashed) // Dashed line
plot(series, linestyle=plot.linestyle_dotted) // Dotted line
time() and time_close()New timeframe_bars_back parameter:
// Get time from 5 bars back on the DAILY timeframe (not current chart)
dailyTimeBack = time("D", timeframe_bars_back=5)
// Positive = past bars, Negative = future (expected) timestamps
futureTime = time("D", timeframe_bars_back=-1) // Expected next bar
// In library:
//@version=6
library("MyLib")
export const float PI = 3.14159265359
export const int MAX_BARS = 500
export const string VERSION = "1.0.0"
time_close on Non-Time-Based ChartsFor Renko, Line Break, Kagi, Point & Figure, Range charts:
time_close of open realtime bar now returns natime_close[1] now works immediately after bar closes// New "PercentageLTP" style for percentage box sizing
renkoTicker = ticker.renko(syminfo.tickerid, "PercentageLTP", 1.0)
kagiTicker = ticker.kagi(syminfo.tickerid, "PercentageLTP", 0.5)
pnfTicker = ticker.pointfigure(syminfo.tickerid, "PercentageLTP", 1.0)
box.set_xloc()// Modify box x-coordinates after creation
box.set_xloc(myBox, left, right, xloc.bar_index)
box.set_xloc(myBox, leftTime, rightTime, xloc.bar_time)
// ✅ Any indentation works inside ()
plot(series,
title="Plot",
color=color.blue, // Different indentation OK
linewidth=2)
indicator("Title",
overlay=true,
max_bars_back=500)
// ✅ CORRECT - Non-multiple-of-4 indentation
longCondition = ta.crossover(ema50, ema200) and
rsi < 30 and
volume > ta.sma(volume, 20)
// ❌ WRONG - Multiple of 4 (or same level)
longCondition = ta.crossover(ema50, ema200) and
rsi < 30 // Error: 4 spaces
longCondition = ta.crossover(ema50, ema200) and
rsi < 30 // Error: same indentation
// ❌ NEVER split ternary across lines
text = condition ?
"value1" :
"value2" // ERROR!
// ✅ ALWAYS keep on one line
text = condition ? "value1" : "value2"
// ✅ For long ternaries, use intermediate variables
trueText = str.format("Long value {0}", param1)
falseText = str.format("Other value {0}", param2)
result = condition ? trueText : falseText
NEVER use plot() inside local scopes:
// ❌ WRONG - All of these fail:
if condition
plot(value) // ERROR: Cannot use 'plot' in local scope
for i = 0 to 10
plot(close[i]) // ERROR!
myFunc() =>
plot(close) // ERROR!
// ✅ CORRECT patterns:
plot(condition ? value : na) // Conditional plotting
plot(value, color=condition ? color.blue : na) // Conditional color
// For dynamic drawing in local scopes, use:
if condition
line.new(...) // OK
label.new(...) // OK
box.new(...) // OK
For any complex data structure, ALWAYS define User Defined Types (UDTs) FIRST before writing any other code.
method syntaxxloc.bar_time instead of xloc.bar_index (5000 bar limit!)array<MyType> instead of 6+ parallel arrays// ALWAYS define UDTs early in script (after inputs, before calculations)
type Regression
// Time coordinates (for xloc.bar_time - NO lookback limit!)
int startTime
int endTime
// Bar indices (for Y calculations: y = slope * barIndex + intercept)
int startBarIndex
int endBarIndex
// Data parameters
float slope
float intercept
float stdDev
float pearsonR
// State flags
bool isLive = false
bool isOriginal = false
// Drawing objects (managed internally)
line centerLine = na
line upperLine = na
line lowerLine = na
linefill fill = na
// Delete method - clean up drawing objects
method delete(Regression this) =>
if not na(this.centerLine)
line.delete(this.centerLine)
if not na(this.upperLine)
line.delete(this.upperLine)
if not na(this.lowerLine)
line.delete(this.lowerLine)
if not na(this.fill)
linefill.delete(this.fill)
this.centerLine := na
this.upperLine := na
this.lowerLine := na
this.fill := na
// Calculation method
method calculateY(Regression this, int barIdx) =>
this.slope * barIdx + this.intercept
// Draw method - use xloc.bar_time for unlimited lookback!
method draw(Regression this, color baseColor, int width) =>
this.delete() // Clean up old drawings first
startY = this.calculateY(this.startBarIndex)
endY = this.calculateY(this.endBarIndex)
// ✅ CRITICAL: Use xloc.bar_time - NO 5000 bar limit!
this.centerLine := line.new(
this.startTime, startY,
this.endTime, endY,
xloc=xloc.bar_time, // ← UNLIMITED LOOKBACK
color=baseColor,
width=width)
ALWAYS use xloc.bar_time for drawing objects that may need historical display:
// ❌ WRONG - Limited to 5000 bars back
line.new(bar_index - 100, y1, bar_index, y2, xloc=xloc.bar_index)
// ✅ CORRECT - Unlimited historical lookback
line.new(time[100], y1, time, y2, xloc=xloc.bar_time)
// Store TIME when events occur, not just bar_index
var int eventTime = na
var int eventBarIndex = na
if eventOccurred
eventTime := time // For drawing
eventBarIndex := bar_index // For Y calculation
// Single array of UDTs instead of parallel arrays
var array<Regression> regressions = array.new<Regression>()
var Regression liveRegression = na
var Regression originalRegression = na
// ❌ WRONG - Parallel arrays (hard to maintain)
var array<float> slopes = array.new<float>()
var array<float> intercepts = array.new<float>()
var array<int> startBars = array.new<int>()
var array<int> endBars = array.new<int>()
// ... 6+ arrays to keep in sync!
// ✅ CORRECT - Single UDT array
var array<Regression> regressions = array.new<Regression>()
// Create new instance with all data
newRegression = Regression.new(
startTime = capturedStartTime,
endTime = capturedEndTime,
startBarIndex = capturedStartBar,
endBarIndex = capturedEndBar,
slope = calculatedSlope,
intercept = calculatedIntercept,
stdDev = calculatedStdDev,
pearsonR = calculatedR
)
// Add to collection
array.push(regressions, newRegression)
// ✅ BEST: Use for...in for UDT arrays
for reg in regressions
baseColor = reg.slope >= 0 ? uptrendColor : downtrendColor
reg.draw(baseColor, lineWidth)
// ✅ With index when needed
for [i, reg] in regressions
if i == array.size(regressions) - 1
// Special handling for last item
// Capture BOTH time and bar_index when events occur
var int startTime = na
var int startBarIndex = na
var int endTime = na
var int endBarIndex = na
if eventStart
startTime := time // For xloc.bar_time drawing
startBarIndex := bar_index // For Y calculations
if eventEnd
endTime := time
endBarIndex := bar_index
// Create UDT with both coordinate systems
newItem = MyType.new(
startTime = startTime,
endTime = endTime,
startBarIndex = startBarIndex,
endBarIndex = endBarIndex
)
time values for drawing coordinatesbar_index values for Y calculationsline, box, label) as UDT fieldsdelete() method to clean up drawingsdraw() method using xloc.bar_timearray<MyType> instead of parallel arraysfor...in to iterate UDT arraysPrimary documentation references:
/docs/pinescript-v6/quick-reference/syntax-basics.md - Core syntax/docs/pinescript-v6/reference-tables/function-index.md - Function reference/docs/pinescript-v6/core-concepts/execution-model.md - Execution model/docs/pinescript-v6/core-concepts/repainting.md - Repainting issues/docs/pinescript-v6/quick-reference/limitations.md - Platform limits/projects/[project-name].pine// built with PineScript Agents by TradersPost
//@version=6
indicator(title="", shorttitle="", overlay=true)
// built with PineScript Agents by TradersPost
//@version=6
strategy(title="", shorttitle="", overlay=true)
//@strategy_alert_message {{strategy.order.alert_message}}
// ============================================================================
// INPUTS
// ============================================================================
// Group 1: Main Settings
setting1 = input.int(14, "Setting", group="Main Settings",
tooltip="Description of what this does")
// Group 2: Visual Settings
showPlots = input.bool(true, "Show Plots", group="Visual Settings")
plotColor = input.color(color.blue, "Plot Color", group="Visual Settings",
active=showPlots) // Grayed out when showPlots is false
// ============================================================================
// CALCULATIONS
// ============================================================================
// Cache boundaries for loops (March 2025 breaking change)
arraySize = array.size(myArray)
for i = 0 to arraySize - 1
// Process...
// ============================================================================
// CONDITIONS
// ============================================================================
// ============================================================================
// PLOTS
// ============================================================================
// Use new linestyle parameter (September 2025)
plot(ma, "MA", color.blue, linewidth=2, linestyle=plot.linestyle_solid)
// ============================================================================
// ALERTS
// ============================================================================
bid/ask only available on 1T timeframe// Use barstate.isconfirmed for signals
if barstate.isconfirmed and buyCondition
strategy.entry("Long", strategy.long)
// Proper request.security() usage
htfClose = request.security(syminfo.tickerid, "D", close,
lookahead=barmerge.lookahead_off)
// Cache repeated calculations
sma20 = ta.sma(close, 20)
sma50 = ta.sma(close, 50)
crossUp = ta.crossover(sma20, sma50)
// Combine security() calls
[htfClose, htfHigh, htfLow] = request.security(syminfo.tickerid, "D",
[close, high, low])
// Input groups with active parameter
advancedMode = input.bool(false, "Advanced Mode", group="Settings")
advSetting = input.int(10, "Advanced Setting",
group="Settings",
active=advancedMode, // July 2025 feature
tooltip="Only visible in advanced mode")
// Check for na values
safeValue = na(value) ? 0 : value
// Handle division by zero
safeDiv = denominator != 0 ? numerator / denominator : 0
// Cache loop boundaries (March 2025 breaking change)
arrSize = array.size(arr)
for i = 0 to arrSize - 1
// ...
xloc.bar_time (not bar_index)//@version=6 declaration//@strategy_alert_message {{strategy.order.alert_message}} for strategies (placed after the strategy() call)active parameter where appropriateWrite code that is production-ready, efficient, and uses UDT-first architecture with the latest Pine Script v6 features.
npx claudepluginhub traderspost/pinescript-agentsExtracts Pine Script specifications from trading concepts and YouTube video tutorials. Analyzes videos via local tool, detects indicators, patterns, and generates implementation specs.
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.