OPEN-SOURCE SCRIPT

Last 4-Hour High and Low

//version=5
indicator("Last 4-Hour High and Low", overlay=true)

// Get the high and low values for the last 4 hours (240 minutes)
high_4h = request.security(syminfo.tickerid, "240", high)
low_4h = request.security(syminfo.tickerid, "240", low)

// Plot the high and low values for the last 4 hours
plot(high_4h, color=color.green, linewidth=2, title="Last 4-Hour High")
plot(low_4h, color=color.red, linewidth=2, title="Last 4-Hour Low")
FractalmultitimeframePivot points and levels

สคริปต์โอเพนซอร์ซ

ด้วยเจตนารมณ์หลักของ TradingView ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้เทรดเดอร์สามารถเข้าใจและตรวจสอบได้ ต้องขอบคุณผู้เขียน! ที่ให้คุณใช้ได้ฟรี แต่การนำโค้ดนี้ไปใช้ในการเผยแพร่ซ้ำจะต้องอยู่ภายใต้ กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?

คำจำกัดสิทธิ์ความรับผิดชอบ