SHIBRAVIS

Dynamic SUPRES Multi Timeframe Update

Dynamic SUPRES can be interpreted in different ways. Each square marks an area of congestion that could serve as support and resistance.
FLASH UPDATE: Now is possible to choose the timeframe and the bars color on/off.
نص برمجي مفتوح المصدر

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

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

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

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
study(title="Dynamic SUPRES",shorttitle="DySR", overlay=true)

multiplier = input(title="M", type=float, defval=1.21, minval=0.5, maxval=1.9)
timeframe = input(title="Timeframe", type=resolution, defval="60")
barsc = input(title="BarsColor", type=bool, defval=true)

o = security(tickerid,timeframe,open)
c = security(tickerid,timeframe,close)
atr = security(tickerid,timeframe,sma(tr,5))

anomalia = abs(o-c) > multiplier*atr ? 1 : 0
barcolor(anomalia==1 and barsc==1?silver:na,0) 

dot = (anomalia == 1 and c<o)?o+atr:(anomalia == 1 and c>o)?o-atr:na
plotshape(dot,style=shape.square, color=black, location=location.absolute, transp=0)



التحليلات ذات الصلة