Zorro-astrian

ALERT: Passed Yesterday's High/Low

This is just a simple script to show if the current price passed yesterday's high or low price. It will create an alert if so (which can be set up to notify you via email or text).

blog.tradingview.com/?p=1633
نص برمجي مفتوح المصدر

قام مؤلف هذا النص البرمجي بنشره وجعله مفتوح المصدر، بحيث يمكن للمتداولين فهمه والتحقق منه، وهو الأمر الذي يدخل ضمن قيم TradingView. تحياتنا للمؤلف! يمكنك استخدامه مجانًا، ولكن إعادة استخدام هذا الكود في منشور تحكمه قواعد الموقع. يمكنك جعله مفضلاً لاستخدامه على الرسم البياني.

إخلاء المسؤولية

لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
//@version=2
study("Passed Yesterday's High/Low", overlay=true)

//Yesterday's Daily High and Low
YesterHigh = security(tickerid, "D", high[1])
YesterLow = security(tickerid, "D", low[1])

//Current Minute Price
price = security(tickerid, "1", open)

//Price Rises
Rises = price > YesterHigh ? true : false

//Price Falls
Falls = price < YesterLow ? true: false

alertcondition(Rises, title='Price Up', message='Price has Risen!')
alertcondition(Falls, title='Price Down', message='Price has Fallen!')

plot(YesterHigh, color=green)
plot(YesterLow, color=red)