OPEN-SOURCE SCRIPT

Dynamic SMA

Cập nhật
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
ảnh chụp nhanh

ATR (close / atr(len)
ảnh chụp nhanh

Stoch
ảnh chụp nhanh

MFI
ảnh chụp nhanh

%R
ảnh chụp nhanh

"show regular SMA" will show the "SMA" with the same length (with default lighter color)
Phát hành các Ghi chú
Updated to v5
Due to evolution in Pine Script™, an error occurred,
should be fixed now.
Phát hành các Ghi chú
Update, bugfix (max len 5000 allowed)
Phát hành các Ghi chú
Further Bugfix, sorry guys!
ATRdynamicMFIMoving AveragesOscillatorsRelative Strength Index (RSI)

Mã nguồn mở

Theo tinh thần TradingView thực sự, tác giả của tập lệnh này đã xuất bản dưới dạng nguồn mở để các nhà giao dịch có thể hiểu và xác minh. Chúc mừng tác giả! Bạn có thể sử dụng miễn phí. Tuy nhiên, bạn cần sử dụng lại mã này theo Quy tắc nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?


LuxAlgo Dev: luxalgo.com
PineCoder: pinecoders.com

- We cannot control our emotions,
but we can control our keyboard -
Ngoài ra, trên:

Thông báo miễn trừ trách nhiệm