RicardoSantos

[RS]Average Expansion Dynamic Oscillator V0

EXPERIMENTAL:
Oscillator Version.
calculation of extremes and price range for averaging movement.
while price is above market is rising, when bellow market is falling. also can discern strength from the gap of the averages.
نص برمجي مفتوح المصدر

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

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

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

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
study(title='[RS]Average Expansion Dynamic Oscillator V0', overlay=false)
window = input(title='Interval Window:', type=integer, minval=1, defval=5)
multiplier = input(title='Average Multiplier:', type=float, minval=0.01, maxval=0.99, defval=0.5)

h = valuewhen(high >= highest(window), high, 0)
l = valuewhen(low <= lowest(window), low, 0)

rising_falloff = l + ((highest(window)-l)*multiplier)
falling_falloff = h - ((h-lowest(window))*multiplier)

//plot(title='High Extreme', series=h, color=h!=h[1]?na:black)
//plot(title='Low Extreme', series=l, color=l!=l[1]?na:black)

//plot(title='+ Decay', series=rising_falloff, color=rising(rising_falloff, window)?green:silver)
//plot(title='- Decay', series=falling_falloff, color=falling(falling_falloff, window)?maroon:silver)

buy = max(close, falling_falloff)-falling_falloff
sel = min(close, rising_falloff) - rising_falloff

plot(title='+ Decay', series=buy, style=line, color=green, linewidth=1)
plot(title='- Decay', series=sel, style=line, color=maroon, linewidth=1)
plot(title='+ Decay', series=buy, style=histogram, color=green, linewidth=2)
plot(title='- Decay', series=sel, style=histogram, color=maroon, linewidth=2)