Not many people like you. I've been working on a pine script myself for a darkpool detector to place on the chart. Might not work. If anyone wants to give it a try here's the code:
//
@version=6
indicator("Dark Pool Activity Detector", overlay=true)
// Define thresholds
volThreshold = ta.sma(volume, 50) * 2 // Volume 2x 50-period SMA
priceSpike = ta.atr(14) * 2 // ATR-based price move detection
// Detect anomalies
largeVolume = volume > volThreshold
unusualMove = ta.abs(close - ta.sma(close, 50)) > priceSpike
// Plot signals
plotshape(largeVolume, location=location.belowbar, color=
color.red, style=shape.triangleup, title="Large Volume Spike")
plotshape(unusualMove, location=location.abovebar, color=
color.blue, style=shape.triangledown, title="Price Spike")
// Background highlight
bgcolor(largeVolume or unusualMove ?
color.new(color.purple, 85) : na)