Stoqey × TradingView Partnership - Advanced Charts Integration
We've partnered with TradingView to bring their Advanced Charts to Stoqey. Full drawing capabilities for your Pine Script strategies.
Hey traders, algo builders & Pine Script enthusiasts 👋
Big news today – we've partnered with TradingView to bring their industry-leading Advanced Charts directly into Stoqey! This means your Pine Script strategies now get the full visual treatment they deserve – boxes, lines, labels, tables, and every drawing tool you've been asking for.
Why this partnership changes everything
Remember those support/resistance zones you calculate but can't properly visualize? Or those info tables showing real-time strategy metrics? Yeah, we fixed that.
-
Full drawing capabilities – Every Pine Script drawing function now renders beautifully:
box.new()for dynamic support/resistance zonesline.new()for trendlines and levelslabel.new()for price targets and annotationstable.new()for live strategy dashboardspolyline.new()for custom chart patterns- Plus all the standard plots, shapes, and arrows
-
Professional-grade visualization – This isn't the limited Lightweight Charts library. This is TradingView's flagship Advanced Charts – the same engine powering millions of professional traders worldwide.
-
Seamless integration – Your existing PineJS strategies work instantly. No code changes needed – just way better visuals.
What makes this special
| Feature | Before (Lightweight Charts) | Now (TradingView Advanced) |
|---|---|---|
| Drawing Objects | Limited to basic plots | Full box, line, label, table support |
| Visual Annotations | Markers only | Rich text, shapes, polylines |
| Strategy Dashboards | External tools needed | Native table.new() support |
| Chart Patterns | Manual overlays | Direct polyline drawing |
| User Experience | Functional | Professional trading terminal |
| Pine Compatibility | Basic plotting | Full drawing API support |
Real example: Master Trend with proper zones
// Now with FULL visual capabilities
const masterTrendStrategy = async ({ close, high, low, ta, box, line, label, table }) => {
// Calculate support/resistance
const pivot = (high[1] + low[1] + close[1]) / 3;
const r1 = 2 * pivot - low[1];
const s1 = 2 * pivot - high[1];
// Draw dynamic zones (THIS WORKS NOW!)
if (close[0] > pivot) {
box.new(50, s1, 0, pivot, {
bgcolor: 'rgba(0, 255, 0, 0.1)',
border_color: '#00ff00'
});
}
// Strategy info table
const infoTable = table.new('top_right', 2, 4);
table.cell(infoTable, 0, 0, 'Strategy', { bgcolor: '#1a1a1a' });
table.cell(infoTable, 1, 0, 'Master Trend', { text_color: '#00ff00' });
table.cell(infoTable, 0, 1, 'Position', { bgcolor: '#1a1a1a' });
table.cell(infoTable, 1, 1, position.size > 0 ? 'LONG' : 'FLAT');
// Trendlines that actually draw!
if (trendBreak) {
line.new(50, trendStart, 0, trendEnd, {
color: '#ff0000',
width: 2,
style: 'dashed'
});
}
};Enhanced visualization for everyone
Thanks to our partnership with TradingView, Stoqey users can now access professional charting capabilities as part of the platform. The Advanced Charts library enhances how you visualize your strategies, making it easier to understand and improve your trading algorithms.
What this means for your trading
- Pine Script perfection – Drawing functions from Pine Script now work in your Stoqey strategies
- Professional presentations – Share strategies with institutional-grade chart visualizations
- Better decisions – See exactly what your algo sees with proper visual context
- Zero learning curve – If you know Pine Script, you already know how to use this
Try it right now
Your existing PineJS strategies already support the new charts. Just:
- Open any strategy at stoqey.com/pinejs
- Add any drawing function (
box.new(),line.new(), etc.) - Watch your visualizations come to life
No config, no migration, no webhooks. Just better charts powered by TradingView.
What's next
This is just the beginning. We're working with TradingView to bring even more visualization features to Stoqey traders. Think: enhanced chart types, better visual analytics, and collaborative strategy visualization.
But today? Today you can finally draw those zones, plot those levels, and build those dashboards you've been dreaming about.
Thank you, TradingView!
We're grateful to the TradingView team for making this partnership possible. Their world-class charting technology combined with Stoqey's strategy execution creates a powerful platform for algorithmic traders.
Questions? Ideas? Jump into our Discord or Twitter. Let's see what you build with proper charting power! 📊
Stay sharp & keep shipping,
The Stoqey Team
P.S. – Your existing strategies continue to work exactly as before. The TradingView Advanced Charts integration simply enhances the visualization layer, giving you professional tools to see your strategies in action.