//@version=6 indicator("RSI TMA", overlay=true) // Arrows on the main chart (overlay=true) // Input parameters rsiLength = input.int(2, title="RSI Length") rsiPrice = input.source(close, title="RSI Price") halfLength = input.int(2, title="Half Length") devPeriod = input.int(100, title="Deviation Period") deviations = input.float(0.7, title="Deviations") noDellArr = input.bool(false, title="No Delete Arrows") arrOtstup = input.int(0, title="Arrow Offset") arrUpColor = input.color(color.lime, title="Arrow Up Color") arrDnColor = input.color(color.red, title="Arrow Down Color") alertsMessage = input.bool(false, title="Alerts Message") alertsSound = input.bool(false, title="Alerts Sound") alertsEmail = input.bool(false, title="Alerts Email") alertsMobile = input.bool(false, title="Alerts Mobile") signalBar = input.int(0, title="Signal Bar") ...
// This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © gilanns //@version=5 // # ========================================================================= # // # | Indicator | // # ========================================================================= # indicator(title = "Swing Signals & Overlays Private 2.7.9", shorttitle = "Swing Signals & Overlays Private 2.7.9", overlay = true, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) // # ============================[GET USERS INPUT]============================ # // # ==== [BASIC SETTINGS] gr_basic = "BASIC SETTINGS" bullish = input.color(#A5D6A7, "Bullish", inline = "0", group = gr_basic, tooltip = "1") bearish = input.color(#E57373, "Bearish", inline = "0", group = gr_basic) showsignals ...