OPEN-SOURCE SCRIPT

Dynamic SMA

تم تحديثه
This script uses dynamic length to create a different sma type.

The length of the "Dynamic SMA" - "dSMA" can be:
'RSI', 'Stoch', 'ATR', 'MFI' or '%R'

For example 'RSI' -> the length of the sSMA will be the RSI itself

The biggest challenge was:
'Pine cannot determine the referencing length of a series. Try using max_bars_back' error

The writer of 'referencing length of a series' issue gave following solution:

bar_index == 0 ? 4999 : len
or in case of values which don't go above 100:
bar_index == 0 ? 100 : len

This assigns the necessary buffer to the function.
I'm most grateful for the given solution!

These dSMA's can give Support/Resistance levels, also crossovers of different dSMA's can give extra information

Examples:


RSI
لقطة

ATR (close / atr(len)
لقطة

Stoch
لقطة

MFI
لقطة

%R
لقطة

"show regular SMA" will show the "SMA" with the same length (with default lighter color)
ملاحظات الأخبار
Updated to v5
Due to evolution in Pine Script™, an error occurred,
should be fixed now.
ملاحظات الأخبار
Update, bugfix (max len 5000 allowed)
ملاحظات الأخبار
Further Bugfix, sorry guys!
ATRdynamicMFIMoving AveragesOscillatorsRelative Strength Index (RSI)

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

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

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟


LuxAlgo Dev: luxalgo.com
PineCoder: pinecoders.com

- We cannot control our emotions,
but we can control our keyboard -
يعمل أيضًا:

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