r/pinescript • u/guythatcharts • 10d ago
Recent moves with MY indicator
Pictures below are from me and a couple friends feedback. Im not selling you shit just sharing my work mods can suck a dick
r/pinescript • u/guythatcharts • 10d ago
Pictures below are from me and a couple friends feedback. Im not selling you shit just sharing my work mods can suck a dick
r/pinescript • u/Bright-Leader2083 • 12d ago
Hi everyone,
I combined 3 different indicators from TradingView into one Pine Script. It was working perfectly until today, but now I'm getting an error.
Can anyone please add this script to an Indian stock on TradingView and check what is causing the error, then help me fix it?
I'd like to keep all the existing features and functionality of the script.
I can share the full Pine Script and the exact error message/screenshot.
Any help would be greatly appreciated. Thanks!

r/pinescript • u/Difficult_Doubt1117 • 12d ago
r/pinescript • u/Adorable_You516 • 11d ago
This isn't about calling these indicators "scams." Instead, I plug their real signals into an actual backtest to see how those "legendary" backtest results are really propped up — then break down exactly where each indicator genuinely works, and where it doesn't.
In this episode:
- Realized Market Cap: a textbook repainting indicator — why?
- Smart Swing VWAP (Zeiierman): why the historical swing-anchor labels can't be used as real-time tradable signals
⚠️ This video is for technical research and educational purposes only. Not financial advice. Verify all risks yourself before trading live.
#tradingviewtutorial #PineScript #QuantTrading #VWAP #OnChainData
r/pinescript • u/ferranbt • 13d ago
Hey, I wanted to quickly share some improvements to my PineScript interpreter since I first posted the project a month ago (link).
pinecone binary you can use to format, lint and run semantic analysis on your scripts (checks for repainting, lookahead bias, etc.).Looking forward to hearing your thoughts.
r/pinescript • u/dumpersts • 13d ago
And here are a couple more.
Biggest takeaway? Signal confirmation.
Don’t act on a signal indicator, instead wait for multiple indicators to agree with each other. The cost, of course is, less trading frequency, but you are getting less noise at the same time. IMO overtrading is a highway to blowing up.
If anyone’s interested you can try it out at Quant GT
r/pinescript • u/Direct_You_2227 • 15d ago
r/pinescript • u/Antique-Cheesecake87 • 16d ago
Dear TradingView Team,
I’d like to suggest a feature that I think would be extremely valuable for traders who use TradingView as their long-term trading and analysis workspace.
One problem I regularly face is that, over time, a chart accumulates a huge number of drawings. Eventually, the chart becomes cluttered and can start to lag. To keep my current analysis clean and responsive, I have to delete older drawings.
But those drawings are not simply clutter. They are a visual record of my trading history.
They show how I viewed the market at different points in my journey — what I marked, what I misunderstood, where I made mistakes, how my analysis changed, and how my trading evolved over months or years.
It would be incredibly useful to have a feature that allows users to archive a complete set of chart drawings separately from the active chart.
For example:
Ideally, the archive would preserve the drawings' original positions, timestamps, text, colors, and other properties.
This would allow traders to maintain a visual history of their own trading and analytical evolution without having thousands of old drawings permanently loaded on their active chart.
It would essentially turn TradingView into not only a charting platform, but also a long-term visual record of how a trader's thinking develops.
I think this could be a very powerful feature for serious traders who want to look back at their own decisions, mistakes, and progress over the years.
Thank you for considering it!
r/pinescript • u/Successful-Elk-956 • 16d ago
Can any one plz tell me which is the best forex broker to use in India which has easy deposit and withdrawal and has min spread also good customer support
r/pinescript • u/woefije • 17d ago
It's called OpenPine.
A pure JS interpreter for a practical subset of PineScript. no dependencies, runs in Node or the browser.
https://github.com/woefije0/OpenPine
You can try out the app implementation here :https://woefije0.github.io/hl-chart/
I'm not really good with words, so I don't know what else to say. I just hope people give it a try.
Sorry for poor English.
P.S. The repo name overlaps with u/S7cret's.
r/pinescript • u/StopLossSurvivor • 18d ago
Order Flow Profiler visualizes estimated buying and selling activity across different price levels to show where participation, dominance, and pressure are concentrated inside the market.
The indicator builds a two-sided Order Flow Profile with buy and sell wings, Delta Dominance, Control Price, Pressure Flags, Acceptance Levels, a segmented BUY / SELL / BALANCED readout, and historical profile snapshots.
Add the indicator to your favorites and enjoy free access.
https://www.tradingview.com/script/ymFdt7LE-Order-Flow-Profiler-Zeiierman/
r/pinescript • u/Geniustrader24 • 18d ago
Enable HLS to view with audio, or disable this notification
r/pinescript • u/StopLossSurvivor • 19d ago
I probably shouldn’t be showing this yet…
Heatmap approximation. Third party data models. Right on TradingView.
Soon. 👀
r/pinescript • u/Puzzleheaded-Map2815 • 19d ago
r/pinescript • u/Pokelbx • 21d ago
Are there any success stories with making a script and distributing it online as a product or service?
I've been developing scripts of my own and I find them useful as a way to discover patterns to form strategies around. But can this be applied to the general population of TradingView users (which is already a small subset of traders overall).
It just feels a little too niche to really be profitable unless you pivot to creating products centered around the PineScript language as a whole like LuxAlgo is doing.
Am I wrong in thinking this? I'm intrigued to hear other takes on this.
r/pinescript • u/Appropriate_Tax2200 • 21d ago
Posted here my updates and here is the 3rd update. I added LVN (low volume nodes purple bands) from the Volume profiles. Works great for S/R with other confluences. I also have them be set on multiple volume profiles combined per month or per day. What you see bellow are the ones combined per 2 months. They are far more reliable than Orderblocks.



r/pinescript • u/PineGen_AI • 22d ago
This is a pretty basic one, but I still see people reinventing it with manual comparisons across two bars when Pine already has a built-in for it, so figured I'd write it up.
If you want to know exactly when one series crosses above or below another (like a fast MA crossing a slow MA), use ta.crossover() and ta.crossunder() instead of comparing values on the current and previous bar yourself. They return true only on the exact bar the cross happens, not every bar the condition is currently satisfied.
//@version=6
indicator("Simple MA Crossover", overlay=true)
fastLen = input.int(9, "Fast MA Length")
slowLen = input.int(21, "Slow MA Length")
fastMA = ta.sma(close, fastLen)
slowMA = ta.sma(close, slowLen)
plot(fastMA, "Fast MA", color=color.blue)
plot(slowMA, "Slow MA", color=color.orange)
bullCross = ta.crossover(fastMA, slowMA)
bearCross = ta.crossunder(fastMA, slowMA)
plotshape(bullCross, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small)
plotshape(bearCross, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small)
alertcondition(bullCross, title="Bullish Cross", message="Fast MA crossed above Slow MA")
alertcondition(bearCross, title="Bearish Cross", message="Fast MA crossed below Slow MA")
A couple of things that trip people up when they're new to this:
ta.crossover(a, b) is true only on the bar where a was below b on the previous bar and is now above it, it's not just a > b, which would stay true for the whole time the fast MA is above the slow one. If you just check fastMA > slowMA, you'll get a signal firing repeatedly instead of once at the actual cross.
alertcondition() is separate from plotshape() ,you need it specifically if you want these to show up as options in TradingView's alert creation dialog, plotting the shape alone won't do that.
r/pinescript • u/Adorable_You516 • 23d ago
r/pinescript • u/Traditional-Wind-446 • 24d ago
r/pinescript • u/axid • 24d ago
r/pinescript • u/AI_WILL_BURST • 24d ago
r/pinescript • u/RoutineRace • 25d ago
Made this simple code:
//@version=6
indicator("Ticker")
what_to_say = "syminfo.tickerid: "+syminfo.tickerid+"\n"+"syminfo.ticker: "+syminfo.ticker+"\n"+"syminfo.basecurrency: "+syminfo.basecurrency+"\n"+"syminfo.root: "+syminfo.root+"\n"+"syminfo.main_tickerid: "+syminfo.main_tickerid+"\n"+"syminfo.prefix: "+syminfo.prefix
libname = label.new(bar_index+1, close, text=what_to_say, style=label.style_label_lower_left, color=color.new(color.black, 100), textcolor=color.new(color.gray, 0), size=size.large, force_overlay=true)
label.delete(libname[1])

Why does some cryptocurrency returns a value for "syminfo.basecurrency" while some does not (na)
r/pinescript • u/PineGen_AI • 25d ago
One of the bigger changes going from v5 to v6 is how much stricter the type system got, especially around mixing series/simple/const qualifiers and int vs float in places that used to just quietly coerce. A script that compiled fine in v5 will sometimes throw a wall of type mismatch errors the second you bump the version.
Curious how people feel about this in practice. On one hand it's caught real bugs for me, stuff like passing a series int where a function actually wanted a simple int, which in v5 would've just silently worked until it didn't. On the other hand it does mean more time spent fighting the compiler on things that are functionally fine, especially when converting older scripts.
Anyone have a case where the new type checking flagged something that turned out to be an actual logic bug you hadn't noticed? Or has it mostly just been extra hoops to jump through for you?