Skip to main content

Posts

Showing posts from November, 2025

Elite Binary

//@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") ...

Swing Signals & Overlays

// 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 ...

SFI 1.0

//@version=5 indicator("Aradya Signal's ",shorttitle = "Sfi Scalper 1.0", overlay = true) src = input(hl2, title="Source",group = "Aradya Signal's") Multiplier = input.float(2,title="Sensitivity (0.5 - 5)", step=0.1, defval=2, minval=0.5, maxval=5,group = "Aradya Signal's") atrPeriods = input.int(14,title="ATR Length", defval=10,group = "Aradya Signal's") atrCalcMethod= input.string("Method 1",title = "ATR Calculation Methods",options = ["Method 1","Method 2"],group = "Aradya Signal's") stopLossVal = input.float(2.0, title="Stop Loss Percent (0 for Disabling)", minval=0,group = "Aradya Signal's") showBuySellSignals = input.bool(true,title="Show Buy/Sell Signals", defval=true,group = "Aradya Signal's") percent(nom, div) => 100 * nom / div src1 = ta.hma(open, 5)[1] src2 = ta.hma(c...

GainzAlgo V2 Alpha

// © GainzAlgo //@version=5 indicator('GainzAlgo V2 [Alpha]', overlay=true, max_labels_count=500) show_tp_sl = input.bool(true, 'Display TP & SL', group='Techical', tooltip='Display the exact TP & SL price levels for BUY & SELL signals.') rrr = input.string('1:2', 'Risk to Reward Ratio', group='Techical', options=['1:1', '2:3', '1:2', '1:4'], tooltip='Set a risk to reward ratio (RRR).') tp_sl_multi = input.float(1, 'TP & SL Multiplier', 1, group='Techical', tooltip='Multiplies both TP and SL by a chosen index. Higher - higher risk.') tp_sl_prec = input.int(2, 'TP & SL Precision', 0, group='Techical') candle_stability_index_param = 0.7 rsi_index_param = 80 candle_delta_length_param = 10 disable_repeating_signals_param = input.bool(true, 'Disable Repeating Signals', group='Techical', tooltip='Removes repeating si...

Market Structure

// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/ // © LuxAlgo //@version=5 indicator("Market Structure CHoCH/BOS LEO", overlay = true, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) //------------------------------------------------------------------------------ // Settings //-----------------------------------------------------------------------------{ length = input.int(5, minval = 3) //Colors showBull = input(true, 'Bullish Structures', inline = 'bull', group = 'Style') bullCss = input.color(#089981, '', inline = 'bull', group = 'Style') showBear = input(true, 'Bearish Structures', inline = 'bear', group = 'Style') bearCss = input.color(#f23645, '', inline = 'bear', group = 'Style') showSupport = input(false, 'Support', inline = 's',...

Mayfair Fx scalper

//@version=5 indicator("Mayfair FX Scalper V-10 Price Action + SMC", overlay=true) // === INPUTS === rsiLength = input.int(14, title="RSI Length") overbought = input.float(73, title="SELL Level") oversold = input.float(31, title="BUY Level") rsiSrc = input.source(open, title="RSI Source") // === Color Inputs === entryLineColor = input.color(color.white, title="entry Label Color") entryLabelColor = input.color(color.white, title="entry Lable Color") slLineColor = input.color(color.red, title="Stop Loss Line Color") slLabelColor = input.color(color.red, title="Stop Loss Label Color") tpLineColor = input.color(color.blue, title="Take Profit Line Color") tpLabelColor = input.color(color.blue, title="Take Profit Color") entryTextColor = input.color(color.rgb(0, 0, 0) , title="entry Text Color") slTextColor = input.color(color.white, t...