Skip to main content

Posts

Showing posts from December, 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") ...

Swift Algo

// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // Join our channel for more free tools: https://t.me/simpleforextools //@version=5 VERSION = 'ALGO' strategy( 'SWIFT ', shorttitle = 'SWIFT' + VERSION, overlay = true, explicit_plot_zorder = true, pyramiding = 0, default_qty_type = strategy.percent_of_equity, default_qty_value = 10, calc_on_every_tick = false, process_orders_on_close = true) // © traderschatroom88 // === INPUTS === res = input.timeframe('15', 'TIMEFRAME', group ="NON REPAINT") useRes = input(true, 'Use Alternate Signals') intRes = input(8, 'Multiplier for Alernate Signals') basisType = input.string('ALMA', 'MA Type: ', opti...

elite algo v30

//@version=5 // indicator("Elite Algo v30 [AlgoPoint]", shorttitle="Elite Algo v30 [AlgoPoint]", overlay = true, precision=0, explicit_plot_zorder=true, max_labels_count=500) // This code is created by algopoint. All other leaked algos is available at algopoint.mysellix.io // Scammer List: // Discord Username: nedenolmuyor (ZZ_Algo) // Discord Username: rayyav (MAD MAD) Also He is Eyo Breakout Telegram Admin, Becareful // // AlgoPoint Official Contact Adrress // Discord Username: algopoint // Instagram: algopoint // Instagram: algopoint01 // Website: algopoint.mysellix.io // Mail: algopointstore@gmail.com // ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ // ---------------------------------------------- User Inputes ----------------------------------------------------- // Volatility Calculater // FUNCTIONS title = 'AlgoPo...