ค้นหา
ผลิตภัณฑ์
ชุมชน
ตลาด
ข่าว
โบรกเกอร์
เพิ่มเติม
TH
เริ่มกันเลย
ชุมชน
/
ไอเดีย
/
Mbe
ทองคำ / ดอลลาร์สหรัฐ
Mbe
โดย 050deacfd7ed491395b33e904d9274
ติดตาม
ติดตาม
7 ก.ย.
0
7 ก.ย.
//
version
=5
indicator("Market Breadth Indicator (MBE)", overlay=false)
// สร้างตัวแปรสำหรับหุ้นที่เพิ่มขึ้นและลดลง
advancing = close > close[1] ? 1 : 0
declining = close < close[1] ? 1 : 0
// คำนวณ Advance-Decline Line
adl = ta.cum(advancing - declining)
// คำนวณ Advance-Decline Ratio
ad_ratio = ta.sum(advancing, 1) / ta.sum(declining, 1)
// คำนวณ New Highs-New Lows
new_highs = ta.highest(close, 52) == close ? 1 : 0
new_lows = ta.lowest(close, 52) == close ? 1 : 0
nh_nl = ta.cum(new_highs - new_lows)
// การแสดงผลบนกราฟ
plot(adl, title="Advance-Decline Line", color=color.blue)
plot(ad_ratio, title="Advance-Decline Ratio", color=color.green)
plot(nh_nl, title="New Highs-New Lows", color=color.red)
Support and Resistance
Trend Analysis
050deacfd7ed491395b33e904d9274
ติดตาม
คำจำกัดสิทธิ์ความรับผิดชอบ
ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่
ข้อกำหนดการใช้งาน