ATR Oscillator - Index (Average True range Oscillator)The purpose of converting the ATR value indicator to an oscillator;
It is known that the ATR value is not between the two specified values. So it is not compressed between 0 and 100 like RSI and %B etc. Therefore, conditions such as "A condition if ATR value is X, B condition if ATR value is Y" cannot be created. In order to create these conditions, the max and min value range of the ATR value must be determined. This indicator converts the ATR values into a percentage number according to the maximum and minimum ATR values in the period you will choose. Max value is 100, min value is 0. The considered ATR value, on the other hand, corresponds to the % of the difference between the max and min value in the selected period.
In this way, conditions such as "If the ATR Oscillator value is greater than 10 or 20 or 30" can now be created, or the value of another indicator can be calculated based on the ATR Oscillator value. For example; Let's say we want the standard deviation of BBand to change according to the value of the ATR Oscillator. If BBand Standard Deviation is 3 if ATRO value is 100, BBand Standard Deviation is 2 if ATRO value is 0, and BBand Standard Deviation is 2.5 when ATRO value is 50;
We can encode it as BBand_Std_Dev=((ATRO*0.01)+2 )
If the ATRO value is between .... and ...., you can make improvements such as plot color X.
Kaptan
RSI and BBand simultaneously OverSoldENG : This indicator is created by combining the standard period RSI indicator with an Oversold limit of 32, an Overbought limit of 70 and a period of 14 (these values can be changed optionally from the entries and still tabs of the indicator settings) and the Bollinger Band. indicator with a standard deviation of 2 and a period of 20. Also, the RSI Oversold is an upward green triangle where the price simultaneously falls below the BB and the lower limit (Low) (i.e. below 32), where the RSI Overbought (i.e. above 70) at the same time the price rises above the BB and the upper limit (Upper) is a downward red triangle. is indicated by a triangle. An alarm condition is established on these conditions. Source codes are posted visually and written in clear language and with explanations for beginners to learn to pine.
TR : Bu gösterge OverSold sınırı 32, OverBought sınırı 70 ve periodu 14 olan (bu değerler tercihe göre indikatör ayarlarının girdiler ve still sekmelerinden değiştirilebilir) standart periodluk RSI göstergesi ile standart sapma değeri 2, periodu 20 olan Bollinger Bandı göstergesinin birleştirilmesiyle oluşturulmuş olup ilaveten RSI'nin OverSold iken (yani 32 altına düştüğü) aynı anda fiyatın BBand alt sınırı (Lower) altına düştüğü yerleri yukarı yönlü yeşil üçgenle, RSI'nin OverBought iken (yani 70 üstüne çıktığı) aynı anda fiyatın BBand üst sınırı (Upper) üstüne çıktığı yerleri aşağı yönlü kırmızı üçgenle belirtmektedir. Bu şartlar üzerine de alarm kondüsyonu oluşturulmuştur. Kaynak kodları görünür olarak yayınlanmış olup, pine öğrenmeye yeni başlayanlar için anlaşılır dilde ve açıklamalar eklenerek yazılmıştır.