OPEN-SOURCE SCRIPT
BALAJEE Style: Liquidity & Volume POC

//version=5
indicator("Order Flow Delta - Footprint Style", overlay=true)
// --- Settings ---
showLabels = input.bool(true, "Show Volume Delta Labels")
highVolThreshold = input.float(1.5, "High Volume Alert (x Average)", step=0.1)
// --- Calculations ---
// Calculating "Delta" (Simple version: Volume * Direction)
float delta = (close > open) ? volume : -volume
float avgVol = ta.sma(volume, 20)
bool isHighVol = volume > avgVol * highVolThreshold
// --- Colors ---
// Professional "Muted" colors like the pros use
color bullColor = color.new(#089981, 0)
color bearColor = color.new(#f23645, 0)
color neutralColor = color.new(color.gray, 50)
// --- Visuals ---
// Color the candles based on Volume Delta
barcolor(delta > 0 ? bullColor : bearColor)
// Plot Delta Labels (The "Numbers" look)
if showLabels
label.new(bar_index, high, text=str.tostring(math.round(volume/1000, 1)) + "k",
style=label.style_none,
textcolor=delta > 0 ? color.green : color.red,
yloc=yloc.abovebar)
// Highlight Institutional Activity (Yellow dots for huge volume)
plotshape(isHighVol, "Institutional Vol", shape.circle, location.bottom, color.yellow, size=size.tiny)
// --- Trend Background ---
var float trendPOC = na
trendPOC := ta.vwap(close)
plot(trendPOC, "VWAP (Fair Value)", color=color.new(color.white, 70), style=plot.style_linebr)
indicator("Order Flow Delta - Footprint Style", overlay=true)
// --- Settings ---
showLabels = input.bool(true, "Show Volume Delta Labels")
highVolThreshold = input.float(1.5, "High Volume Alert (x Average)", step=0.1)
// --- Calculations ---
// Calculating "Delta" (Simple version: Volume * Direction)
float delta = (close > open) ? volume : -volume
float avgVol = ta.sma(volume, 20)
bool isHighVol = volume > avgVol * highVolThreshold
// --- Colors ---
// Professional "Muted" colors like the pros use
color bullColor = color.new(#089981, 0)
color bearColor = color.new(#f23645, 0)
color neutralColor = color.new(color.gray, 50)
// --- Visuals ---
// Color the candles based on Volume Delta
barcolor(delta > 0 ? bullColor : bearColor)
// Plot Delta Labels (The "Numbers" look)
if showLabels
label.new(bar_index, high, text=str.tostring(math.round(volume/1000, 1)) + "k",
style=label.style_none,
textcolor=delta > 0 ? color.green : color.red,
yloc=yloc.abovebar)
// Highlight Institutional Activity (Yellow dots for huge volume)
plotshape(isHighVol, "Institutional Vol", shape.circle, location.bottom, color.yellow, size=size.tiny)
// --- Trend Background ---
var float trendPOC = na
trendPOC := ta.vwap(close)
plot(trendPOC, "VWAP (Fair Value)", color=color.new(color.white, 70), style=plot.style_linebr)
สคริปต์โอเพนซอร์ซ
ด้วยเจตนารมณ์หลักของ TradingView ผู้สร้างสคริปต์นี้ได้ทำให้เป็นโอเพนซอร์ส เพื่อให้เทรดเดอร์สามารถตรวจสอบและยืนยันฟังก์ชันการทำงานของมันได้ ขอชื่นชมผู้เขียน! แม้ว่าคุณจะใช้งานได้ฟรี แต่โปรดจำไว้ว่าการเผยแพร่โค้ดซ้ำจะต้องเป็นไปตาม กฎระเบียบการใช้งาน ของเรา
คำจำกัดสิทธิ์ความรับผิดชอบ
ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมใน ข้อกำหนดการใช้งาน
สคริปต์โอเพนซอร์ซ
ด้วยเจตนารมณ์หลักของ TradingView ผู้สร้างสคริปต์นี้ได้ทำให้เป็นโอเพนซอร์ส เพื่อให้เทรดเดอร์สามารถตรวจสอบและยืนยันฟังก์ชันการทำงานของมันได้ ขอชื่นชมผู้เขียน! แม้ว่าคุณจะใช้งานได้ฟรี แต่โปรดจำไว้ว่าการเผยแพร่โค้ดซ้ำจะต้องเป็นไปตาม กฎระเบียบการใช้งาน ของเรา
คำจำกัดสิทธิ์ความรับผิดชอบ
ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมใน ข้อกำหนดการใช้งาน