OPEN-SOURCE SCRIPT
已更新

Dynamic SMA

3 677
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!

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。