name
stringlengths
1
64
url
stringlengths
44
135
author
stringlengths
3
30
author_url
stringlengths
34
61
likes_count
int64
0
33.2k
kind
stringclasses
3 values
pine_version
int64
1
5
license
stringclasses
3 values
source
stringlengths
177
279k
Broadening Formations [QuantVue]
https://www.tradingview.com/script/PghpY09l-Broadening-Formations-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
290
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © QuantVue //@version=5 indicator("Broadening Formations [QuantVue]", overlay = true) //inputs dtlColor = input.color(color.red, 'Down Trend Line Color', inline = '0') utlColor = input.color(...
ASG Delta %
https://www.tradingview.com/script/APsHJfbF-ASG-Delta/
Asgardian_
https://www.tradingview.com/u/Asgardian_/
39
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Asgardian_ //@version=5 indicator(title="ASG Delta %", overlay=true) i_normal = input.bool(title="Norm ", defval=true, inline='row1') i_reverse = input.bool(title="Rev ", defval=true, inline='row1') i...
Smoother Momentum Stops [Loxx]
https://www.tradingview.com/script/v8XgnKnE-Smoother-Momentum-Stops-Loxx/
loxx
https://www.tradingview.com/u/loxx/
264
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © loxx //@version=5 indicator("Smoother Momentum Stops [Loxx]", overlay = true, timeframe="", timeframe_gaps = true) color greencolor = #2DD204 color redcolor = #D2042D smmom(float src,...
RSI-MFI Machine Learning [ Manhattan distance ]
https://www.tradingview.com/script/jrjOQDgc-RSI-MFI-Machine-Learning-Manhattan-distance/
TZack88
https://www.tradingview.com/u/TZack88/
738
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © TZack88 //@version=5 indicator("RSI-MFI Machine Learning [ Manhattan distance ]",shorttitle = "RSI-MFI [ Machine Learning ]" , overlay=true) string Core = "➞ Core Settings...
Linear Correlation Coefficient W/ MAs and Significance Tests
https://www.tradingview.com/script/EUZehIbw-Linear-Correlation-Coefficient-W-MAs-and-Significance-Tests/
jsalemfinancial
https://www.tradingview.com/u/jsalemfinancial/
9
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jsalemfinancial //@version=5 indicator("Linear Correlation Coefficient") partner = math.log(nz(request.security(input.symbol(defval="QQQ", title="Security"), timeframe.period, close))) len = input.i...
Mobius - Trend Pivot
https://www.tradingview.com/script/znfMUs8L-Mobius-Trend-Pivot/
dudeowns
https://www.tradingview.com/u/dudeowns/
121
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © coderboring //@version=5 indicator("Mobius - Trend Pivot", overlay = true) // Mobius // V01.01.29.2019 // Uses trend of higher highs with higher lows and trend of lower lows with lower highs to locate pi...
Anchored VWAP (Auto High & Low)
https://www.tradingview.com/script/72stxVxI-Anchored-VWAP-Auto-High-Low/
liquid-trader
https://www.tradingview.com/u/liquid-trader/
224
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © liquid-trader // This script plots, and auto-updates, 3 separate VWAPs: a traditional VWAP, a VWAP anchored to a trends high, // and another anchored to a trends low. Because VWAP is a prominent market ma...
Futures All List / Sell Signal
https://www.tradingview.com/script/bQXoNV5K/
gokhanpirnal
https://www.tradingview.com/u/gokhanpirnal/
29
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © gokhanpirnal //@version=5 indicator("Futures All List / Sell Signal", shorttitle = "Sell Signal", overlay = false) // | INPUT | // So...
Displacement (Two FVGs)
https://www.tradingview.com/script/fgMo64tR-Displacement-Two-FVGs/
elScipio
https://www.tradingview.com/u/elScipio/
177
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © AJ7919 //@version=5 indicator('Displacement (Two FVGs)', overlay=false) bullishFvg = low[1] > high[3] and low[2] > high[4] bearishFvg = high[1] < low[3] and high[2] < low[4] bull=bullishFvg?2:0 bear=bea...
Revolution SMA-EMA Divergence
https://www.tradingview.com/script/bXQccHA9-Revolution-SMA-EMA-Divergence/
steffenrg
https://www.tradingview.com/u/steffenrg/
30
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © steffenrg //@version=5 indicator("Revolution SMA-EMA Divergence") len = input(50) sma_short_cycle = ta.sma(close, len) ema_short_cycle = ta.ema(close, len) difference = ema_short_cycle - sma_short_cycle ...
VOLD Ratio (Volume Difference Ratio) by Tenozen
https://www.tradingview.com/script/hqiSDreM-VOLD-Ratio-Volume-Difference-Ratio-by-Tenozen/
Tenozen
https://www.tradingview.com/u/Tenozen/
86
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Tenozen //@version=5 indicator("VOLD Ratio",precision = 6) is_new_time = ta.change(time("W")) up_net_volume = close > open? volume: 0 down_net_volume = close < open? volume: 0 var float up_vol = na var ...
Nexus Blast Trading Strategy [Kaspricci]
https://www.tradingview.com/script/WkoqnY4e/
Kaspricci
https://www.tradingview.com/u/Kaspricci/
162
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Kaspricci //@version=5 indicator("Nexus Blast Trading Strategy [Kaspricci]", shorttitle = "Nexus Blast Trading", overlay = true, max_lines_count = 500, max_boxes_count = 500) // =========================...
Volatility
https://www.tradingview.com/script/AKMU95Wu-Volatility/
weak_hand
https://www.tradingview.com/u/weak_hand/
61
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © weak_hand //@version=5 indicator("Volatility", overlay = false) // ----------------------------------------------} // LIBRARY // ----------------------------------------------{ import weak_hand/RiskMana...
Reversal Signals [LuxAlgo]
https://www.tradingview.com/script/qTWl7ZOy-Reversal-Signals-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
4,678
study
5
CC-BY-NC-SA-4.0
// 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("Reversal Signals [LuxAlgo]", "LuxAlgo - Reversal Signals", true, max_labels_count = 500, max_bars_back = 5000) //----------...
Normalized Volume Rate of Change
https://www.tradingview.com/script/x3BcF2TG-Normalized-Volume-Rate-of-Change/
LeafAlgo
https://www.tradingview.com/u/LeafAlgo/
86
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © LeafAlgo //@version=5 indicator("Normalized Volume Rate of Change", overlay=false) // Calculation Inputs length = input.int(14, "VROC Length") maLength = input.int(9, "Moving Average Length") // Calcula...
Prevailing Trend Indicator
https://www.tradingview.com/script/ejTvDyF7-Prevailing-Trend-Indicator/
bjr117
https://www.tradingview.com/u/bjr117/
82
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © bjr117 //@version=5 indicator(title = "Prevailing Trend Indicator", shorttitle = "PTI", overlay = false) //============================================================================== // Function: Calc...
Volatility Percentage Monitor
https://www.tradingview.com/script/4vPmknx0-Volatility-Percentage-Monitor/
Fab_Coin_
https://www.tradingview.com/u/Fab_Coin_/
16
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Fab_Coin_ // Volatility Percentage Monitor (VPM) //@version=5 indicator("Volatility Percentage Monitor", "VPM", overlay=false) // HMI Inputs // tf = input.timeframe(defval="1D", title="Timefram...
Session Tick-Box
https://www.tradingview.com/script/w30PubRf-Session-Tick-Box/
sosso_bott
https://www.tradingview.com/u/sosso_bott/
53
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © mbome237 //@version=5 indicator('Session Tick-Box', overlay=true) import sosso_bott/SAT_LIB/45 as sat groupset = '  ▶︎ ===========  Session Settings  =========== ◀︎' groupset2 ...
Trading Session Template
https://www.tradingview.com/script/Z7Evd8Yo-Trading-Session-Template/
its_zezooo
https://www.tradingview.com/u/its_zezooo/
43
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © its_zezooo // CODE FROM ZEN FREE COURSE //@version=5 indicator("Trading Session Template", shorttitle = "MySession", overlay = true) // Import Zen Library import ZenAndTheArtOfTrading/ZenLibrary/2 as z...
Parabolic SAR + EMA 200 + MACD Signals
https://www.tradingview.com/script/eevVxLxD-Parabolic-SAR-EMA-200-MACD-Signals/
Saleh_Toodarvari
https://www.tradingview.com/u/Saleh_Toodarvari/
1,175
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Saleh_Toodarvari //@version=5 indicator(title="Parabolic SAR + EMA 200 + MACD Signals", shorttitle="SAR EMA MACD", overlay=true, timeframe="", timeframe_gaps=true) // Inputs sar_start = input(0.02) sar_in...
Machine Learning : Torben's Moving Median KNN Bands
https://www.tradingview.com/script/dUC0uIWr-Machine-Learning-Torben-s-Moving-Median-KNN-Bands/
Ankit_1618
https://www.tradingview.com/u/Ankit_1618/
126
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Ankit_1618 //@version=5 indicator('Machine Learning : Torben Moving Median KNN', overlay=true) length_fast = input(8) length_slow = input(13) price = input(hlc3) // //====== TORBEAN MOVING MEDIAN //===...
MACD Normalized [ChartPrime]
https://www.tradingview.com/script/pV1vMscr-MACD-Normalized-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
568
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ChartPrime //@version=5 indicator("MACD Normalized [ChartPrime]", explicit_plot_zorder = true, timeframe = '', timeframe_gaps = false) enable_fill = input.bool(true, "Enable Ribbon ") fast_length ...
info
https://www.tradingview.com/script/KJq6nu4T-info/
aseem64
https://www.tradingview.com/u/aseem64/
0
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © aseem64 //@version=5 indicator("info", overlay=true) symbol_position = input.string(title='Symbol Position', options=["top_center", "middle_right", "None"], defval="top_center") rsi_vix_position = input...
Fibonacci Levels on Any Indicator [By MUQWISHI]
https://www.tradingview.com/script/fOYvs9sf-Fibonacci-Levels-on-Any-Indicator-By-MUQWISHI/
MUQWISHI
https://www.tradingview.com/u/MUQWISHI/
401
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © MUQWISHI //@version=5 indicator("Fibonacci Levels on Any Indicator", overlay = true, max_bars_back = 500, max_labels_count = 500, max_lines_count = 500) s = " ‏" srtNme = input.string("Long", "Start Draw...
Reversal
https://www.tradingview.com/script/bxZXAUpf-Reversal/
HasanRifat
https://www.tradingview.com/u/HasanRifat/
1,544
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © HasanRifat //@version=5 indicator("Reversal", overlay = true) look_back = input.int(defval = 20, title = "Candle Lookback") confirm_in = input.int(defval = 3, title = "Confirm Within") bull_candle = 0 b...
Central Bank Balance Sheets
https://www.tradingview.com/script/hWxnwKHp-Central-Bank-Balance-Sheets/
andr3w321
https://www.tradingview.com/u/andr3w321/
22
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © andr3w321 //@version=5 indicator("Central Bank Balance Sheets", format=format.volume, precision=3) display_option = input.string(title="Display", defval="Central Bank Assets", options=["Central Bank Asse...
Real Dominance
https://www.tradingview.com/script/S7uZ2POz-real-dominance/
ProHorizon
https://www.tradingview.com/u/ProHorizon/
2
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ProHorizon //@version=5 indicator("Real Dominance", format = format.percent) //set dominance symbols for single stablecoins var main_symbol = input.symbol("CRYPTOCAP:BTC",title = "Choose ticker of the coi...
Seasonal Performance for Stocks & Crypto
https://www.tradingview.com/script/FC74fu5f-Seasonal-Performance-for-Stocks-Crypto/
Amphibiantrading
https://www.tradingview.com/u/Amphibiantrading/
132
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Amphibiantrading //@version=5 indicator("Seasonal Performance") JAN = month == 1, FEB = month == 2, MAR = month == 3, APR = month == 4, MAY = month == 5, JUN = month == 6 JUL = month == 7, AUG = month ==...
Daily data info
https://www.tradingview.com/script/UHwYYf7W/
GiovanniRielli
https://www.tradingview.com/u/GiovanniRielli/
16
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © GiovanniRielli //@version=5 indicator('Daily data info' , overlay = true , precision = 0 , max_boxes_count = 500 , max_labels_count = 500 , max_lines_count = 500 , max_bars_back = 5000) Timezone = 'Ame...
Position Size Calculator (EzAlgo)
https://www.tradingview.com/script/AacIDtSH-Position-Size-Calculator-EzAlgo/
EzAlgo
https://www.tradingview.com/u/EzAlgo/
943
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // @ EzAlgo //@version=5 indicator("Position Size Calculator (EzAlgo)", overlay=true) table_location_input = input.string("Top Right", title="Location", options=["Bottom Right", "Bottom Left", "Bottom C...
Positive Volatility and Volume Gauge
https://www.tradingview.com/script/8LUlnPhV-Positive-Volatility-and-Volume-Gauge/
JohnCabernet
https://www.tradingview.com/u/JohnCabernet/
15
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JohnCabernet //@version=5 indicator("Positive Volatility and Volume Gauge with True Momentum Oscillator", overlay=false) // Input parameters atr_length = input(14, "ATR Length") signal_threshold = input(...
Currency Converter
https://www.tradingview.com/script/UVicAQAD-Currency-Converter/
ronylts
https://www.tradingview.com/u/ronylts/
5
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ronylts //@version=5 indicator("Currency Converter",overlay = true) //input for main inm1=input.string("USD","Main Currency",group = "From") //input for other currency in1=input.string("GBP","Currency 1",...
Accumulation & Distribution - Simple
https://www.tradingview.com/script/Ot1Gl2Hc-Accumulation-Distribution-Simple/
jadeja_rajdeep
https://www.tradingview.com/u/jadeja_rajdeep/
44
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jadeja_rajdeep //@version=5 indicator("Acc & Dist - Simple") no_of_days = input.int(42, "No of Days / Length", minval=5, maxval=252, step=1) up = 0.0 down =0.0 vsum =0.0 for x=0 to (no_of_days - 1) ...
Support & Resistance Parser
https://www.tradingview.com/script/uPrpkhDV-Support-Resistance-Parser/
CaptainBrett
https://www.tradingview.com/u/CaptainBrett/
55
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © CaptainBrett //@version=5 indicator("S&R Parser", overlay=true) supportString = input.string("", title = "Support: ") supportColor = input.color(color.red, title = "Support Color") resistanceString = in...
Range Deviations @joshuuu
https://www.tradingview.com/script/bo56LlEd-Range-Deviations-joshuuu/
joshuuu
https://www.tradingview.com/u/joshuuu/
357
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © joshuuu //@version=5 indicator("Range Deviations @joshuuu", overlay = true, max_lines_count = 500, max_boxes_count = 500) //#region[Inputs and Variables] show_boxes = input.bool(true, "Show Boxes", g...
Bollinger Bands and SMA Channel Buy and Sell
https://www.tradingview.com/script/oDJXybep-Bollinger-Bands-and-SMA-Channel-Buy-and-Sell/
ivandra447
https://www.tradingview.com/u/ivandra447/
127
study
4
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ivandra447 // This Indicator is a combination of a standard BB indicator incorporated with a SSL Channel by ErwinBeckers which is Simple Moving average with a length of set at 10 (Default) and calculates t...
Divergence V2
https://www.tradingview.com/script/TrQdhwlp-Divergence-V2/
seba34e
https://www.tradingview.com/u/seba34e/
252
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © seba34e //@version=5 indicator("Divergence V2", overlay = true, max_labels_count=500, max_lines_count=500, max_bars_back=100) //SQ Inputs length = 20 //SQ functions bband(length, mult) => t...
Divergence RSI V2
https://www.tradingview.com/script/ADKw2Gnn-Divergence-RSI-V2/
seba34e
https://www.tradingview.com/u/seba34e/
85
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © seba34e //@version=5 indicator("Divergence RSI V2", overlay = false, max_labels_count=300, max_lines_count=500, max_bars_back=100) //SQ Inputs length = 20 //SQ functions bband(length, mult) => ta.sma(c...
Dual_MACD_trending
https://www.tradingview.com/script/znXfZwAd-Dual-MACD-trending/
vpirinski
https://www.tradingview.com/u/vpirinski/
6
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © vpirinski //@version=5 //#region *********** DESCRIPTION *********** // ================================================== INFO ================================================== // This indicator is usef...
[KVA]Donchian Channel Percentage
https://www.tradingview.com/script/wqbc2TtE-KVA-Donchian-Channel-Percentage/
Kamvia
https://www.tradingview.com/u/Kamvia/
6
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Kamvia //@version=5 indicator("[KVA]Donchian Channel Percentage", shorttitle="DC%", overlay=false) // User-defined input for the lookback period of the Donchian Channel length = input(20, title="Length")...
AIR Supertrend (Average Interpercentile Range)
https://www.tradingview.com/script/tuuXNlu9-AIR-Supertrend-Average-Interpercentile-Range/
alphaXiom
https://www.tradingview.com/u/alphaXiom/
195
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // ╭━━╮╱╱╱╱╱╱╭╮╱╱╱╭━┳╮ // ┃╭╮┣━┳━╮╭┳┫╰┳━╮┃━┫╰╮ // ┃╭╮┃┻┫╋╰┫╭┫╋┃╋╰╋━┃┃┃ // ╰━━┻━┻━━┻╯╰━┻━━┻━┻┻╯ @ Woody_Bearbash //@version=5 indicator('Average Interpercentile Range AIR Supertrend','AIR Supertrend', ove...
Trendline Pivots [QuantVue]
https://www.tradingview.com/script/YbPHHN8X-Trendline-Pivots-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
997
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © QuantVue Team //@version=5 indicator("Trendline Pivots [QuantVue]", overlay = true) //inputs dtlColor = input.color(color.red, 'Down Trend Line Color', inline = '0') utlColor = input.color(...
TrendingNow
https://www.tradingview.com/script/ZR76EZIi-TrendingNow/
jac001
https://www.tradingview.com/u/jac001/
39
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jac001 //@version=5 indicator("TrendingNow", overlay=true) // Define input parameters length = input.int(14, minval=1, title="Length") multiplier = input.float(2.0, minval=0.1, title="Multiplier") trailPe...
Simple Ichimoku Kinko Hyo Cloud
https://www.tradingview.com/script/kFVSX9pe-Simple-Ichimoku-Kinko-Hyo-Cloud/
RozaniGhani-RG
https://www.tradingview.com/u/RozaniGhani-RG/
20
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © RozaniGhani-RG //@version=5 indicator('Simple Ichimoku Kinko Hyo Cloud', 'SIKHC', true) // 0. Inputs // 1. Type // 2. Custom Function // 3. Variables // 4. Constructs //#region ———————————————————— 0. I...
Visible Range Linear Regression Channel [vnhilton]
https://www.tradingview.com/script/Bwd3wDPL-Visible-Range-Linear-Regression-Channel-vnhilton/
vnhilton
https://www.tradingview.com/u/vnhilton/
92
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © vnhilton // Inspired by TradingView's Linear Regression Channel & Visible Average Price Code //@version=5 indicator("Visible Range Linear Regression Channel [vnhilton]", "VRLRC", true) //Getting access t...
Monday_Weekly_Range/ErkOzi/Deviation Level/V1
https://www.tradingview.com/script/ih9L87Sb/
ErkOzi
https://www.tradingview.com/u/ErkOzi/
32
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ErkOzi //@version=5 indicator(title='Monday_Weekly_Range/ErkOzi/Deviation Level/V1', shorttitle='Monday_Range/ErkOzi', overlay=true) // holds the daily price levels openPrice = request.security(syminfo.t...
Simple Ultimate Oscillator
https://www.tradingview.com/script/JNuk1mF6-Simple-Ultimate-Oscillator/
RozaniGhani-RG
https://www.tradingview.com/u/RozaniGhani-RG/
48
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © RozaniGhani-RG //@version=5 indicator('Simple Ultimate Oscillator', 'SUO', false, format.price, precision=2, timeframe="", timeframe_gaps=true) // 0. Inputs // 1. Type // 2. Custom Function // 3. Variabl...
Liquidity Proxy : China
https://www.tradingview.com/script/M6OU4tpa-Liquidity-Proxy-China/
dharmatech
https://www.tradingview.com/u/dharmatech/
39
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © dharmatech //@version=5 indicator("Liquidity Proxy : China", overlay = false, timeframe = "M") // ECONOMICS:CNCBBS+ECONOMICS:CNM1+ECONOMICS:CNFER-ECONOMICS:CNGRES line_cbbs = request.security("ECONOMIC...
Regularized-Moving-Average Oscillator Suite
https://www.tradingview.com/script/LAFDETZX-Regularized-Moving-Average-Oscillator-Suite/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
342
study
5
CC-BY-NC-SA-4.0
// 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/ // © EliCobra //@version=5 indicator("Regularized-MA Oscillator Suite", "{Ʌ} - MA Osc. Suite", false) f_kama(src, len, kamaf, kamas) => white = math.abs(src ...
Logarithmic Volatility
https://www.tradingview.com/script/PRGiVQQm/
gvcinstitute
https://www.tradingview.com/u/gvcinstitute/
30
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © gvcinstitute //@version=5 indicator("Logarithmic Volatility") high_t = math.log(high)- math.log(open) low_t = math.log(low)- math.log(open) close_t = math.log(close)- math.log(open) vol_t = math.sqrt(0....
CANDLE STICK HEATMAP
https://www.tradingview.com/script/f5GmZiTY-CANDLE-STICK-HEATMAP/
traderharikrishna
https://www.tradingview.com/u/traderharikrishna/
86
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © traderharikrishna //@version=5 indicator("CANDLE STICK HEATMAP",overlay=true) bullco=input.color(color.green,'', group='Log',inline='1') bearco=input.color(color.red,'', group='Log',inline='1') txtco=inpu...
Trend Reversal Indicator (Bull/Bear)
https://www.tradingview.com/script/q87gRfGA-Trend-Reversal-Indicator-Bull-Bear/
Crunchster1
https://www.tradingview.com/u/Crunchster1/
41
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Crunchster1 //@version=5 indicator("Trend Reversal Indicator (Bull/Bear)", shorttitle="TRI", timeframe="W", timeframe_gaps=false) length = input.int(52, 'Momo length (slow MA)', inline='01') flength = in...
Volume Spread Analysis Candle Patterns
https://www.tradingview.com/script/0Cl7mEzy-Volume-Spread-Analysis-Candle-Patterns/
deepu0010
https://www.tradingview.com/u/deepu0010/
71
study
4
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © deepu0010 //@version=4 study(title="Volume Spread Analysis Candle Patterns", shorttitle="VSA Candle Patterns", overlay=true) // Define the inputs barColorUp = input(color.green, title="Up Bar Color") barC...
VWAP Reset Zones
https://www.tradingview.com/script/JoQo9get/
Demech
https://www.tradingview.com/u/Demech/
54
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Demech //@version=5 // The indicator function initializes the indicator settings. indicator(title="VWAP Reset Zones", shorttitle="VWAP RZ", overlay = true, timeframe = "", timeframe_gaps = false) //VWAP...
Scalp Tool
https://www.tradingview.com/script/Un8fvP5C/
Demech
https://www.tradingview.com/u/Demech/
101
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Demech //@version=5 indicator("Scalp Tool", overlay=true, format=format.price, precision = 2, timeframe = "", timeframe_gaps = false) import PineCoders/Time/3 // Parameters length = input(96, title="Leng...
Sector/Industry
https://www.tradingview.com/script/zQZG6IEH-Sector-Industry/
SelfUnmade
https://www.tradingview.com/u/SelfUnmade/
204
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © SelfUnmade //@version=5 indicator("Sector/Industry", overlay = true) sector = syminfo.sector industry = syminfo.industry group_pos = 'Table Position' string i_tableYpos = input.string('top', 'X', inline=...
Market Time Cycle (Expo)
https://www.tradingview.com/script/u872lNTM-Market-Time-Cycle-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
548
study
5
CC-BY-NC-SA-4.0
// 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/ // © Zeiierman //@version=5 indicator("Market Time Cycle (Expo)",max_lines_count=500, precision=0) //~~~~~~~~~~~~~~~~~~~~~~~} // Inputs { marketcycle = input.b...
Open Interest Chart [LuxAlgo]
https://www.tradingview.com/script/xGnUhodO-Open-Interest-Chart-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,639
study
5
CC-BY-NC-SA-4.0
// 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('Open Interest Chart [LuxAlgo]', shorttitle='LuxAlgo - Open Interest Chart', max_bars_back=1000) cm = ' - CME' co ...
Volume Profile Bar-Magnified Order Blocks [JacobMagleby]
https://www.tradingview.com/script/n5WMDywt-Volume-Profile-Bar-Magnified-Order-Blocks-JacobMagleby/
JacobMagleby
https://www.tradingview.com/u/JacobMagleby/
1,328
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JacobMagleby //@version=5 indicator(title = "Volume Profile Bar-Magnified Order Blocks [JacobMagleby]", shorttitle = "Volume Profile Bar-Magnified Order Blocks [JacobMagleby]", overlay = true, max_boxes_...
Show Extended Hours (Futures & Crypto)
https://www.tradingview.com/script/B7EzfHLP-Show-Extended-Hours-Futures-Crypto/
liquid-trader
https://www.tradingview.com/u/liquid-trader/
43
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © liquid-trader // This indicator mimics TradingViews "Extended trading hours" background color settings. // It is most useful on symbols that do not conventionally have extended hours, but are available to...
David Varadi Intermediate Oscillator
https://www.tradingview.com/script/NNwvuRlA-David-Varadi-Intermediate-Oscillator/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
249
study
5
CC-BY-NC-SA-4.0
// 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/ // © EliCobra //@version=5 indicator("David Varadi Intermediate Oscillator", "{Ʌ} - DVI", false, timeframe = "", timeframe_gaps = true) mmult = input.float(0.8, ...
Liquidity Engulfing & Displacement [MsF]
https://www.tradingview.com/script/rXN2YTsl/
Trader_Morry
https://www.tradingview.com/u/Trader_Morry/
191
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Trader_Morry // This is an interesting take on a common engulfing candle pattern with 2 additional filter critera to ensure there is a liquidity play // Idea came from AtaBankz based on trade setup 4H can...
Donchian Volatility Indicator - Adaptive Channel Width
https://www.tradingview.com/script/UYVkIXD3-Donchian-Volatility-Indicator-Adaptive-Channel-Width/
LeafAlgo
https://www.tradingview.com/u/LeafAlgo/
89
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © LeafAlgo //@version=5 indicator("Donchian Volatility Indicator - Adaptive Channel Width", overlay=false) // Calculation Inputs length = input.int(50, "Lookback Period for Donchian Channel") atrPeriod = i...
FalconRed VIX
https://www.tradingview.com/script/Tva4w8uW-FalconRed-VIX/
falcon_red
https://www.tradingview.com/u/falcon_red/
38
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © falcon_red //@version=5 indicator("FalconRed VIX", overlay=true, linktoseries=true) timeframeInput = input.string("5", "Timeframe", ["1", "3", "5", "15", "6h", "D", "W", "M", "Y"]) price = request.securit...
Range Projections [TFO]
https://www.tradingview.com/script/5mCuGUSR-Range-Projections-TFO/
tradeforopp
https://www.tradingview.com/u/tradeforopp/
1,277
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © tradeforopp //@version=5 indicator("Range Projections [TFO]", "Range Projections [TFO]", true, max_boxes_count = 500, max_lines_count = 500, max_labels_count = 500) // -----------------------------------...
PriceCatch-Intraday Volume
https://www.tradingview.com/script/OOMr6lrG-PriceCatch-Intraday-Volume/
PriceCatch
https://www.tradingview.com/u/PriceCatch/
40
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © PriceCatch // You must credit PriceCatch if you modify this code or use it in your scripts. //@version=5 indicator(title="PriceCatch-Intraday Volume", shorttitle="PC-IDVol", overlay=true) if not timeframe...
3 Fib EMAs To Scalp Them All
https://www.tradingview.com/script/0muaoeXU-3-Fib-EMAs-To-Scalp-Them-All/
JohannCoffee
https://www.tradingview.com/u/JohannCoffee/
325
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JohannCoffee //@version=5 indicator("3 Fib EMAs To Scalp Them All", shorttitle="Fib EMAs", overlay=true) // EMA inputs input_ema1 = input(21, title="Micro EMA", group = "Choose Your EMA") input_ema2 = i...
Selective Moving Average: Demo
https://www.tradingview.com/script/XvnYrN12-Selective-Moving-Average-Demo/
wbburgin
https://www.tradingview.com/u/wbburgin/
12
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © wbburgin //@version=5 indicator("Selective Moving Average: Demo",shorttitle = "Selective Moving Average [wbburgin]",overlay=true) selective_ma(bool condition, float source, simple int length, string ma_t...
improved volume
https://www.tradingview.com/script/MgDqdchK/
CyrptoTraderBoss
https://www.tradingview.com/u/CyrptoTraderBoss/
51
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © KriptoTraderYusuf //@version=5 indicator('improved Volume', shorttitle='Vol', overlay=false, format = format.volume) ma = input(defval = true, title = "Length", inline = "ma") len = input(defval = 21, tit...
Gap Finder (Arpan)
https://www.tradingview.com/script/4jRL0LSN-Gap-Finder-Arpan/
truetechlevels
https://www.tradingview.com/u/truetechlevels/
38
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © truetechlevels //@version=5 indicator("Gap Finder (Arpan)", overlay = true, max_boxes_count = 25) varBS = ta.barssince(dayofmonth != dayofmonth[1]) var varBlOpeningGaps = input.bool(false, "Opening Gaps...
Volatility-Based Mean Reversion Bands
https://www.tradingview.com/script/Iy7HR2sE-Volatility-Based-Mean-Reversion-Bands/
LeafAlgo
https://www.tradingview.com/u/LeafAlgo/
127
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © LeafAlgo //@version=5 indicator("Volatility-Based Mean Reversion Bands", overlay=true) // Calculation Inputs length = input.int(20, "Lookback Period", minval=1) multiplier = input.float(2.5, "Multiplier"...
EMA/SMA Cross with Levels
https://www.tradingview.com/script/XpkYKL0M-EMA-SMA-Cross-with-Levels/
jjustingreyy
https://www.tradingview.com/u/jjustingreyy/
28
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jjustingreyy //@version=5 indicator(title='EMA/SMA Cross', overlay=true) HTF = input.timeframe('', 'TimeFrame') short_src = input.source(close, 'Short Source', inline='short') short_len = input.int(120,...
Dynamic Trendlines Multi-Timeframe
https://www.tradingview.com/script/pFV6T1r2-Dynamic-Trendlines-Multi-Timeframe/
jjustingreyy
https://www.tradingview.com/u/jjustingreyy/
169
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jjustingreyy //@version=5 indicator(title='Dynamic Trendlines Multi-Timeframe', overlay=true, shorttitle="MTF Dyno Lines") // Input settings atrLength = input(14, title="ATR Length") thresholdMultiplier...
Bull & Bear Engulfing - 3 Strike and 180 Candles
https://www.tradingview.com/script/0hxHKYGA-Bull-Bear-Engulfing-3-Strike-and-180-Candles/
SenatorVonShaft
https://www.tradingview.com/u/SenatorVonShaft/
29
study
4
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © SenatorVonShaft //@version=4 study("Bull & Bear Engulfing - 3 Strike and 180 Candles" , overlay = true) candlperc = input(title="Bar Fullness Percentage", minval=50.00, maxval=100, step=0.1, defval=...
Support Resistance Classification [LuxAlgo]
https://www.tradingview.com/script/5FCWOMoR-Support-Resistance-Classification-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,830
study
5
CC-BY-NC-SA-4.0
// 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( title='Support Resistance Classification [LuxAlgo]' , shorttitle='LuxAlgo - Support Resistance Classificatio...
Relative Strength, not RSI
https://www.tradingview.com/script/gZdtBmIo-Relative-Strength-not-RSI/
jjustingreyy
https://www.tradingview.com/u/jjustingreyy/
28
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jjustingreyy //@version=5 indicator(title='Relative Strength, not RSI', shorttitle='not RSI') // Input parameters len = input(14, title='RSI Length') src = input(close, title='Source') HTF = input.timefr...
Adaptive Mean Reversion Indicator
https://www.tradingview.com/script/UWITlMWj-Adaptive-Mean-Reversion-Indicator/
LeafAlgo
https://www.tradingview.com/u/LeafAlgo/
120
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © LeafAlgo //@version=5 indicator("Adaptive Mean Reversion Indicator", overlay=false) // Market Regime Detection volatilityThreshold = input.float(5.0, "Volatility Threshold") isTrending = ta.atr(14) > vol...
bar view
https://www.tradingview.com/script/xI09XRmj-bar-view/
nishantsaxena
https://www.tradingview.com/u/nishantsaxena/
20
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © nishantsaxena //@version=5 indicator("bar view",overlay = true,max_boxes_count = 500, max_labels_count = 500, max_bars_back = 4000) //Input options lookbackInput1 = input.int(15, minval = 0, maxval = 60, ...
Key Levels (Open, Premarket, & Yesterday)
https://www.tradingview.com/script/UtD0cGM2-Key-Levels-Open-Premarket-Yesterday/
liquid-trader
https://www.tradingview.com/u/liquid-trader/
333
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © liquid-trader // This indicator automatically identifies and draws high-probability support / resistance levels (key levels). // Initially, it only tracked yesterdays highs / lows, premarket highs / lows,...
Turtle Soup Indicator
https://www.tradingview.com/script/28gN99Tw-Turtle-Soup-Indicator/
kulturdesken
https://www.tradingview.com/u/kulturdesken/
114
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © kulturdesken //@version=5 indicator("Turtle Soup", overlay=true) period = 20 high_value = ta.highest(high, period) low_value = ta.lowest(low, period) high_candle = high == high_value low_candle = low ==...
Congestionautilus
https://www.tradingview.com/script/WKcCPH92/
Rumost
https://www.tradingview.com/u/Rumost/
17
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © Rumost ...dedicato ai simpatici amici del gruppo di supporto ;-) //@version=5 indicator("Congestionautilus", overlay = true, max_boxes_count = 500) ZoneColor = input(defval = color.new(#ffde4b, 90), title...
Liquidity Channel with B/S
https://www.tradingview.com/script/WPs9eAc7/
Genesis-Trader
https://www.tradingview.com/u/Genesis-Trader/
44
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © atnx //@version=5 indicator("Liquidity Channel with B/S", overlay = true, shorttitle = "Liq Chan B/S") // 1. Indicator - Liquidity Level source = close length = 14 mult = 1.0 lowestLow = ta.lowest(low, ...
Valuation Metrics Table (P/S, P/E, etc.)
https://www.tradingview.com/script/AR1mxfOy-Valuation-Metrics-Table-P-S-P-E-etc/
jvorndran311
https://www.tradingview.com/u/jvorndran311/
19
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © jvorndran311 //@version=5 indicator("Valuation Metrics Table", overlay = true) yearsLookbackPS = input.int(defval = 5, title = "Amount of years to calculate median") i_PS = input.bool(defval = true, titl...
AIAE Indicator
https://www.tradingview.com/script/oU7Cw6Le-AIAE-Indicator/
rodopacapital
https://www.tradingview.com/u/rodopacapital/
30
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © rodopacapital //@version=5 indicator("AIAE Indicator", overlay=false) TMVS = request.security("WILL5000PRFC*1000000000", 'W', close) TMVB = request.security("FRED:GFDEBTN", 'W', close) C = request.sec...
Vwma Oscillator [MMD]
https://www.tradingview.com/script/cDbmStQP/
muratm82
https://www.tradingview.com/u/muratm82/
71
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © muratm82 //@version=5 indicator("Vwma Oscillator [MMD]",overlay=false) a1=ta.ema(close*volume,4)/ta.ema(volume,4) a2=a1-ta.vwma(close,8) a3=2*ta.vwma(a2,8)-ta.vwma(a2,16) plot(a3,color=((a3>a3[3]*0.8 and ...
Moving Average Trend Sniper [ChartPrime]
https://www.tradingview.com/script/iwEyBE2d-Moving-Average-Trend-Sniper-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
933
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ChartPrime //@version=5 indicator("Moving Average Trend Sniper [ChartPrime]", "MATS [ChartPrime]", true) // Custom cosh function cosh(float x) => (math.exp(x) + math.exp(-x)) / 2 // Custom acosh fun...
7 Closes above/below 5 SMA
https://www.tradingview.com/script/EfQbv9xs-7-Closes-above-below-5-SMA/
kulturdesken
https://www.tradingview.com/u/kulturdesken/
68
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © kulturdesken // This script looks for 7 consecutive closes above/below the 5-period SMA. The indicator is inspired by trading legend Linda Raschke's ideas. // It can be used in at least two ways. I use it...
ICT Seek & Destroy Profile [TFO]
https://www.tradingview.com/script/O2WBggA3-ICT-Seek-Destroy-Profile-TFO/
tradeforopp
https://www.tradingview.com/u/tradeforopp/
1,500
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © tradeforopp //@version=5 indicator("ICT Seek & Destroy Profile [TFO]", "S&D Profile [TFO]", true, max_boxes_count = 500, max_labels_count = 500) // -------------------------------------------------- Inpu...
Hann Window Amplitude Filter
https://www.tradingview.com/script/GtnadVvI-Hann-Window-Amplitude-Filter/
mks17
https://www.tradingview.com/u/mks17/
13
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © mks17 //@version=5 indicator('Hann Window Amplitude Filter', overlay=false) //Inputs length = input(14, "Number of frequencies to Filter") var shifts = input.int(0, "Bar moves of the Hann window") minBa...
Simple Dollar Cost Average
https://www.tradingview.com/script/wE93nMBC-Simple-Dollar-Cost-Average/
RomainHaenni
https://www.tradingview.com/u/RomainHaenni/
24
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © RomainHaenni //@version=5 indicator("Dollar Cost Average", "DCA") float startingAmount = input.float(0.0, "Starting Investment") float investmentAmount = input.float(500.0, "Repeating Investment") ...
90 Minute Cycles + MTF
https://www.tradingview.com/script/Xm0okM5F-90-Minute-Cycles-MTF/
HandlesHandled
https://www.tradingview.com/u/HandlesHandled/
420
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © HandlesHandled //@version=5 indicator("90min Cycles" , overlay = true , max_bars_back = 500 , max_lines_count = 500 , max_boxes_count = 500 , max_labels_count = 500) //------------...
90cycle @joshuuu
https://www.tradingview.com/script/9SLWvcoc-90cycle-joshuuu/
joshuuu
https://www.tradingview.com/u/joshuuu/
398
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © joshuuu //@version=5 indicator("90cycle @joshuuu", overlay = true) asia = input.bool(true, "asia") lokz = input.bool(true, "lokz") nyam = input.bool(true, "nyam") nypm = input.bool(true, "nypm") version ...
Swing Volume Profiles [LuxAlgo]
https://www.tradingview.com/script/Ai8Heos2-Swing-Volume-Profiles-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
3,178
study
5
CC-BY-NC-SA-4.0
// 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("Swing Volume Profiles [LuxAlgo]", "LuxAlgo - Swing Volume Profiles", true, max_bars_back = 5000, max_boxes_count = 500...
Weekly Range Support & Resistance Levels [QuantVue]
https://www.tradingview.com/script/5aTZzreA-Weekly-Range-Support-Resistance-Levels-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
257
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © QuantVue //@version=5 indicator("Weekly Range Support & Resistance Levels", overlay = true, max_labels_count = 500, max_lines_count = 500) //-----------------------------------------------// //runtime e...
Interactive Motive Wave Checklist
https://www.tradingview.com/script/ypAxpurY-Interactive-Motive-Wave-Checklist/
Trendoscope
https://www.tradingview.com/u/Trendoscope/
1,327
study
5
CC-BY-NC-SA-4.0
// This work is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/ // © Trendoscope Pty Ltd // ░▒ // ▒▒▒ ▒▒ // ...
Rolling Risk-Adjusted Performance Ratios
https://www.tradingview.com/script/J1aP07iJ-Rolling-Risk-Adjusted-Performance-Ratios/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
516
study
5
CC-BY-NC-SA-4.0
// 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/ // © EliCobra //@version=5 indicator("Rolling Risk-Adjusted Performance Ratios", "[Ʌ] - RAPR", false, timeframe = "", timeframe_gaps = true) type ratios floa...
ADW - Volatility Map
https://www.tradingview.com/script/tREldEYH-ADW-Volatility-Map/
Tradespot
https://www.tradingview.com/u/Tradespot/
15
study
5
CC-BY-NC-SA-4.0
// 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/ // © Andrew Wilkinson //@version=5 indicator(title='ADW - Volatility Map', overlay=true, precision=0) awaitBarConfirmation = false cciLength = 20 atrLength = 14...
TV Draft1
https://www.tradingview.com/script/QodMUl8i-TV-Draft1/
NAVINAGICHA
https://www.tradingview.com/u/NAVINAGICHA/
6
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © N //@version=5 indicator("TV Draft1",overlay=true) //overlay=true, timeframe="", timeframe_gaps=true BRange = input.int(20, minval=0, title="Bull Bear Range (eg. NF-25% BNF-17%)") ema = input(33, title ...
RSI Primed [ChartPrime]
https://www.tradingview.com/script/TnJMMEJI-RSI-Primed-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
1,127
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © ChartPrime //@version=5 indicator("RSI Primed [ChartPrime]") import lastguru/DominantCycle/2 as d double_exponential_moving_average(source)=> var float ema1 = 0.0 var float ema2 = 0.0 var in...
Combined Spot Volume | Crypto v1.1 [kAos]
https://www.tradingview.com/script/Xdriiub4-Combined-Spot-Volume-Crypto-v1-1-kAos/
eAkosKovacs
https://www.tradingview.com/u/eAkosKovacs/
24
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // Script by @eAkosKovacs //@version=5 indicator('Combined Spot Volume | Crypto v1.1 [kAos]', 'CSV v1.1 [kAos]', precision=0, scale=scale.right) i_showMa = input(true, 'Show Volume MA', inline = '0') i_ma_peri...