OPEN-SOURCE SCRIPT
Hacim Patlaması Alarmı (3 Bar Ortalaması)

//version=5
indicator("Hacim Patlaması Alarmı (3 Bar Ortalaması)", overlay=false)
hacim = volume
hacimOrtalama = ta.sma(volume, 3)
limit = hacimOrtalama * 1.5
hacimPatladiMi = hacim > limit
plot(hacim, title="Hacim", color=color.new(color.blue, 0), style=plot.style_columns)
plot(hacimOrtalama, title="3 Bar Ortalaması", color=color.gray, linewidth=1)
bgcolor(hacimPatladiMi ? color.new(color.red, 80) : na)
alertcondition(hacimPatladiMi, title="Hacim Patladı", message="⚠ Hacim patlaması tespit edildi!")
indicator("Hacim Patlaması Alarmı (3 Bar Ortalaması)", overlay=false)
hacim = volume
hacimOrtalama = ta.sma(volume, 3)
limit = hacimOrtalama * 1.5
hacimPatladiMi = hacim > limit
plot(hacim, title="Hacim", color=color.new(color.blue, 0), style=plot.style_columns)
plot(hacimOrtalama, title="3 Bar Ortalaması", color=color.gray, linewidth=1)
bgcolor(hacimPatladiMi ? color.new(color.red, 80) : na)
alertcondition(hacimPatladiMi, title="Hacim Patladı", message="⚠ Hacim patlaması tespit edildi!")
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.