HPotter

Hammer automatic finding script

Hi
Let me introduce my Hammer automatic finding script.
This is a bullish reversal candlestick which occurs in a downtrend.
It has a small real body at the top of the candlestick and a long lower shadow.

نص برمجي مفتوح المصدر

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

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

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

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 10/04/2014
//    This is a bullish reversal candlestick which occurs in a downtrend. 
//    It has a small real body at the top of the candlestick and a long lower shadow.  
////////////////////////////////////////////////////////////

study(title = "Hammer", overlay = true)
upper = highest(10)[1]
barcolor(high < min(open[1], close[1]) ?  abs(open - close) * 3 < min(open, close) - low ? (high - max(open,close)) < 0.05 * (abs(open - close)) ? yellow :na  : na : na)