We've built an experimental Cryto derivatives dashboard that shows liquidation clusters, Open Interest funding rates and real liquidation events based on Binance public data.
Check it out : https://t.co/xV1pemYjLr
We've built an experimental Cryto derivatives dashboard that shows liquidation clusters, Open Interest funding rates and real liquidation events based on Binance public data.
Check it out : https://t.co/xV1pemYjLr
@taylorius1 I was curious coz we're working on a project that allows running Pine Script directly from a JS env, and I know how tricky the mapping is !
Smoothed Heiken Ashi Indicator by ChainSaffron
Regular HA candles still whipsaw you on lower timeframes. This one runs a double-EMA smoothing pass (before and after the HA calculation) so candles stay green for entire trend legs.
Only 2 inputs, 43 lines of Pine Script, and built-in alerts that fire on the exact bar a trend flips. Works with PineTS for local backtesting on Node.js too.
It lags by design. For swing trading, that's the point.
https://t.co/hmgfs2nyzd
Ever tried using RSI for algo trading and got burned by false overbought signals in a strong trend? Yeah, same.
The Quantum Momentum Analyzer by @joatvip takes a different approach: it runs four RSI calculations simultaneously (raw, smoothed, volume-weighted, and multi-layer) and blends them into a single composite reading. The real trick is the built-in regime detection that classifies whether you're in a trending, ranging, or volatile market, then adjusts the overbought/oversold levels dynamically. No more shorting into a bull run because RSI said 70.
We broke down the full Pine Script source, tested it with PineTS on Node.js, and wrote up how to use it for algorithmic signal generation. Divergence strength scoring, momentum burst detection with volume confirmation, regime-aware entry filtering. All runnable locally.
https://t.co/OWUXPzlOXG
#PineScript #AlgoTrading #TradingView #PineTS #QuantForge
@joatvip Awesome contribution, we tested it with PineTS (our Open Source Pine Script Engine) and it worked just fine !
Posted an article about it here : https://t.co/AYAZohHdlR
New writeup on QuantForge – FVG Profile + Rolling POC by BigBeluga
Instead of a standard volume profile, this indicator builds a histogram from Fair Value Gaps. It bins bullish and bearish FVGs across your lookback window and tracks a Rolling Point of Control that shifts only when the underlying gap structure changes.
The per-bin delta volume separates genuinely contested zones from one-sided imbalances , useful for algo signal generation.
Full breakdown + PineTS integration guide:
https://t.co/gvGh61VI8B
#TradingView #PineScript #AlgoTrading #FVG #VolumeProfile #QuantTrading #TechnicalAnalysis #Crypto #Bitcoin
New writeup on QuantForge - we broke down LuxAlgo's Clusters Volume Profile indicator
Instead of one giant volume profile, it uses K-Means clustering to split price action into behavioral regimes and builds a seperate VP for each one. Each cluster gets its own Point of Control, so you can actually see where the real liquidity walls are vs just noise
Also covered how to run it with PineTS on Node.js if your into algo trading
Full article with code and strategy ideas:
https://t.co/wYuKAI7hQB
#algotrading #pinescript #volumeprofile #tradingview #kmeans
@Crinklebine@tradingview the v6 tables are so underused, great to see someone building with them. having multi timeframe direction in one glance is really practical
@masked_stat @daytradingrauf love that you made it open source. building indicators for models you're studying is honestly the best way to learn them inside out
📊 DeltaPulse Wave [ChartPrime] - Standardized Volume Delta Oscillator
Most volume delta indicators drift off into infinity with cumulative values that become unreadable over time. DeltaPulse Wave fixes that by normalizing the net difference between buying and selling volume into a bounded oscillator that stays between -50 and +50, no matter the asset or timeframe. A reading of +30 on BTCUSDC means the same thing as +30 on ETHUSDC or SPY.
It also ships with a built-in divergence engine that detects when price and volume conviction start disagreeing, complete with on-chart sync lines and signal triangles.
You can run it directly in Node.js using PineTS, no TradingView required.
Our latest article covers everything you need to get started:
✅ Full indicator properties (inputs, plots & alerts)
✅ How to load and run it with PineTS
✅ Batch execution with https://t.co/QFNu3SH36b() and live streaming with https://t.co/JkmgtxA7gD()
✅ Tips for using it in algorithmic signal generation and quant research
🔗 https://t.co/qtWIoM4QsJ
#AlgoTrading #PineScript #NodeJS #PineTS #VolumeDelta #QuantForge #TradingIndicators
📊 Swing Profile [BigBeluga] - Structure-Aware Volume Profiling Per Swing
Most volume profiles anchor to fixed time sessions. Swing Profile takes a different approach: it builds a complete volume distribution for each individual swing leg, anchored precisely between confirmed swing highs and lows. Every bullish and bearish move gets its own isolated profile, its own Point of Control, and its own buy/sell delta breakdown.
You can run it directly in Node.js using PineTS, no TradingView required.
Our latest article covers everything you need to get started:
✅ Full indicator properties (inputs, plots & alerts)
✅ How to load and run it with PineTS
✅ Batch execution with https://t.co/QFNu3SH36b() and live streaming with https://t.co/JkmgtxA7gD()
✅ Tips for using it in algorithmic signal generation and quant research
🔗 https://t.co/iwrjRdATEq
#AlgoTrading #PineScript #NodeJS #PineTS #VolumeProfile #QuantForge #TradingIndicators
@HeadlessOracle the reasoning node -> oracle verification -> execute flow is really clean. love that you included 26 tests too, most open source trading stuff ships with zero tests lol