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
RSI + Divergences + Alerts [MisterMoTA]
https://www.tradingview.com/script/6Mgz1Dwf-RSI-Divergences-Alerts-MisterMoTA/
MisterMoTA
https://www.tradingview.com/u/MisterMoTA/
181
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/ // @author = MisterMoTA // © MisterMoTA //@version=5 indicator(title="RSI + Divergences + Alerts [MisterMoTA]", format=format.price) len = input.int(title="RSI Period", minval=1, defval=14, group="RSI Settin...
MarketSmith Volumes
https://www.tradingview.com/script/DRT8QZSp/
Fred6724
https://www.tradingview.com/u/Fred6724/
234
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/ // © Fred6724 //@version=5 indicator('MarketSmith Volumes', format = format.volume, max_labels_count = 500) // Inputs colUp = input(color.rgb(39,54,233,0), title='Up Volume Color', group = 'VOLUMES') colDn ...
Bollinger Bands Liquidity Cloud [ChartPrime]
https://www.tradingview.com/script/dEaK9Qcv-Bollinger-Bands-Liquidity-Cloud-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
425
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("Bollinger Bands Liquidity Cloud [ChartPrime]", overlay = true, max_boxes_count = 500) show = input.bool(true, "Show Bollinger Bands", group = "Bands") length = input.in...
Are stop orders making money? [yohtza]
https://www.tradingview.com/script/SEAjZtCZ-Are-stop-orders-making-money-yohtza/
yohtza
https://www.tradingview.com/u/yohtza/
79
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/ // © yohtza //@version=5 indicator("Are stop orders making money? [yohtza]", overlay = true) import yohtza/Bpa/12 scan_for_dojis = input.bool(true, "Scan for doji signal bars") alerts = input.bool(false, "R...
Hybrid EMA AlgoLearner
https://www.tradingview.com/script/4jhuhtMN-Hybrid-EMA-AlgoLearner/
Uldisbebris
https://www.tradingview.com/u/Uldisbebris/
123
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/ // © Uldisbebris //@version=5 indicator("Hybrid EMA AlgoLearner", shorttitle="Hybrid EMA AlgoLearner", overlay=false) // Parameters for EMAs shortTermPeriod = 50 longTermPeriod = 200 // k-NN parameter k = in...
MA Directional Table
https://www.tradingview.com/script/UQqQ1GrD-MA-Directional-Table/
angelh584
https://www.tradingview.com/u/angelh584/
47
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/ // Written by © angelh584 // idea by @Cooladoola //@version=5 indicator("MA Directional Table", overlay=true) //===== VARIABLES =====\\ var float histSeries = na var color cloudColor = na var int yellowCount ...
Global Liquidity Tav
https://www.tradingview.com/script/oGw3vukA-Global-Liquidity-Tav/
tavishsri
https://www.tradingview.com/u/tavishsri/
3
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/ // © tav //@version=5 indicator("Global Liquidity ", overlay=false) // Calculate the global liquidity value using the formula us = request.security("FRED:WALCL", 'M', close) us_RRP = request.security("FRED:...
Local Volatility
https://www.tradingview.com/script/G1TrcU9W-Local-Volatility/
RicardoSantos
https://www.tradingview.com/u/RicardoSantos/
95
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/ // © RicardoSantos //@version=5 indicator('Local Volatility') //The traditional calculation of volatility involves computing the standard deviation of returns, // which is based on the mean return. However, wh...
NQ vs ES
https://www.tradingview.com/script/A4oxDv7z-NQ-vs-ES/
deivydas.rapalis
https://www.tradingview.com/u/deivydas.rapalis/
10
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/ // © deivydas.rapalis //@version=5 indicator("NQ vs ES", overlay = true) // Calculate the price change percentage for ES and NQ esPriceChange = ((request.security("ES1!", "D", close) - request.security("ES1!"...
Support & Resistance PRO
https://www.tradingview.com/script/s8ZjVeUE-Support-Resistance-PRO/
AlexShech
https://www.tradingview.com/u/AlexShech/
223
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/ // © AlexShech //@version=5 indicator("Support & Resistance PRO", overlay=true) inpPeriod = input.int(defval = 30, title='Look Back Period') inpRF = input.timeframe('D', "Medium Time Frame") inpRF2 = input.ti...
Multiple Ticker Stochastic RSI
https://www.tradingview.com/script/awz4VLuz-Multiple-Ticker-Stochastic-RSI/
sxiong1111
https://www.tradingview.com/u/sxiong1111/
8
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/ // © sxiong1111 // Script Created On: 8/29/2023 // Script Updated On: 8/29/2023 // Script Version: 1.0 // Research Source: https://www.investopedia.com/terms/s/stochrsi.asp // Description: ...
Bollinger Bands Heatmap (BBH)
https://www.tradingview.com/script/xA0P85kO-Bollinger-Bands-Heatmap-BBH/
peacefulLizard50262
https://www.tradingview.com/u/peacefulLizard50262/
58
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/ // © peacefulLizard50262 //@version=5 indicator("Bollinger Bands Heatmap", "BBH", true, max_boxes_count = 500) min_max(source, min, max)=> (source - min)/(max - min) rescale_invert(x, n) => inverted ...
Intraday Volatility Bars
https://www.tradingview.com/script/h8JqtFfy-Intraday-Volatility-Bars/
weak_hand
https://www.tradingview.com/u/weak_hand/
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/ // © weak_hand //@version=5 indicator("Intraday Volatility Bars") // ----------------------------------------------} // INPUT AND VARIABLES // ----------------------------------------------{ int bars_per_day...
Crypto/DXY Scoring
https://www.tradingview.com/script/bFHHWPJP-Crypto-DXY-Scoring/
MXWLL-Capital-Trading
https://www.tradingview.com/u/MXWLL-Capital-Trading/
59
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/ // © KioseffTrading //@version=5 indicator("Crypto/DXY Scoring", precision = 10, overlay = false, format = format.inherit, max_labels_count = 500, max_boxes_count = 500, max_lines_count = 500) import HeWhoMus...
Realtime Divergence for Any Indicator - By John Bartle
https://www.tradingview.com/script/KfYCBk92-Realtime-Divergence-for-Any-Indicator-By-John-Bartle/
JohnBartlesAccount
https://www.tradingview.com/u/JohnBartlesAccount/
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/ // © JohnBartlesAccount //@version=5 indicator("Realtime Divergence for Any Indicator - By John Bartle", overlay=true, max_lines_count=500, max_labels_count = 500, max_bars_back = 300) prc_AllBulls = ...
Liquidity Sentiment Profile (Auto-Anchored) [LuxAlgo]
https://www.tradingview.com/script/V30Sbp5O-Liquidity-Sentiment-Profile-Auto-Anchored-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
2,601
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("Liquidity Sentiment Profile (Auto-Anchored) [LuxAlgo]", "LuxAlgo - Liquidity Sentiment Profile (Auto-Anchored)", true, max_...
AI Channels (Clustering) [LuxAlgo]
https://www.tradingview.com/script/dLXvYOtT-AI-Channels-Clustering-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,429
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("AI Channels (Clustering) [LuxAlgo]", "LuxAlgo - AI Channels", overlay = true) //---------------------------------------------...
RSI Screener Multi Timeframe [5ema]
https://www.tradingview.com/script/ZnIx7SIJ-RSI-Screener-Multi-Timeframe-5ema/
vn5ema
https://www.tradingview.com/u/vn5ema/
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/ // Reused some functions from (I believe made by @kingthies, ©paaax, @QuantNomad) // ©paaax: The table position function (https://www.tradingview.com/script/Jp37jHwT-PX-MTF-Overview/). // @kingthies: The RSI d...
Smoothing ATR band
https://www.tradingview.com/script/MnT69yIM-Smoothing-ATR-band/
khlin712
https://www.tradingview.com/u/khlin712/
246
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/ // © khlin712 //@version=5 indicator("Smoothing ATR band",shorttitle = 'SAB [khlin712]',overlay=true) atrLen = input.int(title='Length', defval=20, minval=1) smoothing = input.string(title='Smoothing', defva...
3M_RANGE/ErkOzi/
https://www.tradingview.com/script/QeRWoouv/
ErkOzi
https://www.tradingview.com/u/ErkOzi/
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/ // © ErkOzi //@version=5 indicator(title='3M_RANGE', shorttitle='3M_RANGE', overlay=true) // Define the range period rangePeriod = '3M' openPrice = request.security(syminfo.tickerid, rangePeriod, open) highPr...
CE - 42MACRO Fixed Income and Macro
https://www.tradingview.com/script/I3G3EqPk-CE-42MACRO-Fixed-Income-and-Macro/
Celestial-Eye
https://www.tradingview.com/u/Celestial-Eye/
90
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/ // © Celestial-Eye // QUICK GUIDE: https://docs.google.com/document/d/1b-ZVyQghSqDETX_GF_-OSIBCa4e0CBGqENbdfId9I-s/edit?usp=sharing //@version=5 indicator("🌌 CE - 42MACRO Fixed Income and Macro 🌌",...
POA
https://www.tradingview.com/script/bKxv6R8N/
dokang
https://www.tradingview.com/u/dokang/
40
library
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/ // © dokang //@version=5 // @description This library is a client script for making a webhook signal formatted string to PoABOT server. library("POA", overlay = true) is_stock() => var stocks = array.fro...
Grid by Volatility (Expo)
https://www.tradingview.com/script/oByzEgAT-Grid-by-Volatility-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
528
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("Grid by Volatility (Expo)", overlay=true) // ~~ ToolTips { t1 = "The length of bars to calculate the Standard Deviation. A...
Camac
https://www.tradingview.com/script/cNMkMjey-Camac/
culturalCardin27605
https://www.tradingview.com/u/culturalCardin27605/
6
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/ // © Majid Rajabi Vardanjani //@version=4 study("Camac", overlay=true, max_labels_count=500) Periods2 = input(title="ATR Period 2", type=input.integer, defval=2, group="ST2") src2 = input("hl2", title="Sourc...
Dynamic Point of Control (POC)
https://www.tradingview.com/script/azqsH7MJ-Dynamic-Point-of-Control-POC/
tkarolak
https://www.tradingview.com/u/tkarolak/
84
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/ // © tkarolak //@version=5 // ==================== // ==== Background ==== // ==================== // The Dynamic POC Indicator is a potent tool designed to provide traders with real-time market insights. // ...
Bias of Volume Share inside Std Deviation Channel
https://www.tradingview.com/script/CxVru5aS-Bias-of-Volume-Share-inside-Std-Deviation-Channel/
tkarolak
https://www.tradingview.com/u/tkarolak/
58
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/ // © tkarolak //@version=5 // ==================== // ==== Background ==== // ==================== // This indicator assesses bullish or bearish bias based on the share of bullish candles // within a standard...
Traders Trend Dashboard
https://www.tradingview.com/script/L8KmH4YK-Traders-Trend-Dashboard/
AlexFuch
https://www.tradingview.com/u/AlexFuch/
110
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/ // © AlexFuch //@version=5 indicator("Traders Trend Dashboard", shorttitle = "TTD", overlay = true, scale = scale.none, max_lines_count = 500) dashboard_position = input.session("Middle Right", "Posision", ...
ReduceSecurityCalls
https://www.tradingview.com/script/MZcJO4BX-ReduceSecurityCalls/
f4r33x
https://www.tradingview.com/u/f4r33x/
2
library
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/ // © f4r33x0 //@version=5 import PineCoders/LibraryStopwatch/1 as sw // @description This library allows you to reduce the number of request.security calls to 1 per symbol per timeframe. library("ReduceSecurit...
fast_utils
https://www.tradingview.com/script/rZqOUF2A-fast-utils/
f4r33x
https://www.tradingview.com/u/f4r33x/
0
library
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/ // © f4r33x //@version=5 // @description This library contains my favourite functions. Will be updated frequently library("fast_utils") // @function : Count int digits in number // @returns : number of int ...
String_Encoder_Decoder
https://www.tradingview.com/script/54blu33h-String-Encoder-Decoder/
f4r33x
https://www.tradingview.com/u/f4r33x/
0
library
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/ // © f4r33x //@version=5 // @description String encoder and decoder to use in internal data tranfer in script calculations. In example script encode 125 values once and then decode them every candle. library...
Liquidity Heatmap [StratifyTrade]
https://www.tradingview.com/script/6NDgpGap/
StratifyTrade
https://www.tradingview.com/u/StratifyTrade/
574
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/ // © HunterAlgos //@version=5 indicator("Liquidity Heatmap [HunterAlgos]", shorttitle = "Liquidity Heatmap [1.0.0]", overlay = true, max_lines_count = 500, max_ba...
Multiple Percentile Ranks (up to 5 sources at a time)
https://www.tradingview.com/script/9EOiQX9y-Multiple-Percentile-Ranks-up-to-5-sources-at-a-time/
Dean_Crypto
https://www.tradingview.com/u/Dean_Crypto/
10
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/ // © Dean_Crypto //@version=5 indicator("Multiple Percentile Ranks", shorttitle = "MPR", max_labels_count = 500) inline1 = "i1" inline2 = "i2" inline3 = "i3" inline4 = "i4" inline5 = "i5" groupOptions = "opt...
Coppock Curve w/ Early Turns [QuantVue]
https://www.tradingview.com/script/G4FdbLiJ-Coppock-Curve-w-Early-Turns-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
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/ // © QuantVue //@version=5 indicator('Coppock Curve w/ Early Turns [QuantVue]', shorttitle='Coppock Curve w/ Early Turns', overlay=false) //----------Inputs----------// var g1 = 'Calculation ...
MTF Fair Value Gap [StratifyTrade]
https://www.tradingview.com/script/HDA8PAJ8-MTF-Fair-Value-Gap-StratifyTrade/
StratifyTrade
https://www.tradingview.com/u/StratifyTrade/
294
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/ // © HunterAlgos //@version=5 indicator("MTF Fair Value Gap [HunterAlgos]", shorttitle = "MTF Fair Value Gap [1.0.0]", overlay = true, max_bars_back = 500, max_bo...
COT TFF Data (S&P_500_CONSOLIDATED)
https://www.tradingview.com/script/JfIbD9pU-COT-TFF-Data-S-P-500-CONSOLIDATED/
rippydave
https://www.tradingview.com/u/rippydave/
7
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/ // © rippydave //@version=5 plot(close) indicator("COT TFF Data (S&P_500_CONSOLIDATED)", overlay=false) float d = na t = timestamp(year, month, dayofmonth) d := t == timestamp(2023, 8, 15) ? -340002 : d d := t ...
text_utils
https://www.tradingview.com/script/OS4xxXo4/
Kaspricci
https://www.tradingview.com/u/Kaspricci/
1
library
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 // @description a set of functions to handle placeholder in texts library("text_utils") // user defined type placeholder to be used in your local script to creat an array of pla...
COT TFF Data (VIX_FUTURES)
https://www.tradingview.com/script/uijdnPNm-COT-TFF-Data-VIX-FUTURES/
rippydave
https://www.tradingview.com/u/rippydave/
4
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/ // © dave50894 //@version=5 plot(close) indicator("COT TFF Data (VIX_FUTURES)", overlay=false) float d = na t = timestamp(year, month, dayofmonth) d := t == timestamp(2023, 8, 15) ? 16473 : d d := t == timestam...
LineBreak
https://www.tradingview.com/script/J1LZ6MQ5-LineBreak/
jac001
https://www.tradingview.com/u/jac001/
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/ // © jac001 //@version=5 indicator("LineBreak", overlay=true) linebreak_tickerid = ticker.linebreak(syminfo.tickerid, 3) [lb_open, lb_high, lb_low, lb_close] = request.security(linebreak_tickerid, timeframe.p...
Support and Resistance Signals MTF [LuxAlgo]
https://www.tradingview.com/script/iOrhpIqc-Support-and-Resistance-Signals-MTF-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
4,566
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("Support and Resistance Signals MTF [LuxAlgo]", 'LuxAlgo - Support Resistance Signals MTF', true, max_boxes_count = 500, max...
Double Supertrend HTF Filter
https://www.tradingview.com/script/2311ovwP-Double-Supertrend-HTF-Filter/
Harrocop
https://www.tradingview.com/u/Harrocop/
87
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/ // © Harrocop //////////////////////////////////////////////////////////////////////////////////////// // Double HTF Supertrend Filter: // - The filter consists of two supertrend indicators of different higthe...
MACD 3D with Signals [Quantigenics]
https://www.tradingview.com/script/GahehghS-MACD-3D-with-Signals-Quantigenics/
Quantigenics
https://www.tradingview.com/u/Quantigenics/
106
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/ // © Quantigenics //@version=5 indicator("MACD 3D with Signals [Quantigenics]") Length = input(defval = 10,title = "Length") FirstDotSignal = input(defval = false,title = "Standard Signal") YellowDo...
Machine Learning Regression Trend [LuxAlgo]
https://www.tradingview.com/script/58YCiPaa-Machine-Learning-Regression-Trend-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,470
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("Machine Learning Regression Trend [LuxAlgo]", "LuxAlgo - Machine Learning Regression Trend", overlay = true, max_labels_c...
ICT Clean Midnight [dR-Algo]
https://www.tradingview.com/script/0Rdqv6CK/
dR-Algo
https://www.tradingview.com/u/dR-Algo/
22
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/ // © dR-Algo //@version=5 indicator('ICT Clean Midnight [dR-Algo]', shorttitle='Midnight [dR]', overlay=true) // // *** Input *** // var visualGroup = "Visual...
All Candlestick Patterns on Backtest [By MUQWISHI]
https://www.tradingview.com/script/OsTuKG4q-All-Candlestick-Patterns-on-Backtest-By-MUQWISHI/
MUQWISHI
https://www.tradingview.com/u/MUQWISHI/
853
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("Candlestick Patterns on Backtest", overlay = true, max_labels_count = 500, max_bars_back = 50) import MUQWISHI/CandlestickPatterns/2 as cp // |+++++++++++++++++++++++++++...
CE - 42MACRO Equity Factor Table
https://www.tradingview.com/script/b3PcU8qn-CE-42MACRO-Equity-Factor-Table/
Celestial-Eye
https://www.tradingview.com/u/Celestial-Eye/
194
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/ // © Celestial-Eye //@version=5 indicator("🌌 CE - 42MACRO Equity Factor Table 🌌", "🌌 CE - EFT 🌌") showCorrTab = input.bool(true, "Show Correlation Table", tooltip = "Plots the Correlation table", ...
MarketSmith Indicator
https://www.tradingview.com/script/b1ykQ879/
Fred6724
https://www.tradingview.com/u/Fred6724/
569
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/ // //@version=5 indicator('MarketSmith Indicator', overlay=true, max_bars_back = 500, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) //------------------ BARS ---------------------// ...
Swing Point Oscillator with Trend Filter [Quantigenics]
https://www.tradingview.com/script/9bkvdAtu-Swing-Point-Oscillator-with-Trend-Filter-Quantigenics/
Quantigenics
https://www.tradingview.com/u/Quantigenics/
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/ // © Quantigenics //@version=5 indicator("Swing Point Oscillator with Trend Filter",overlay = false) OscLength = input.int(defval = 9, title = "Oscillator Length" ) TrendFiltLength = input.int(defval = 1...
Heikin-Ashi Rolling Time Decay Volume Oscillator
https://www.tradingview.com/script/lvLnKtu5-Heikin-Ashi-Rolling-Time-Decay-Volume-Oscillator/
tkarolak
https://www.tradingview.com/u/tkarolak/
46
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/ // © tkarolak //@version=5 // ==================== // ==== Background ==== // ==================== // This script defines a custom Heikin-Ashi Rolling Time Decay Volume Oscillator indicator. // Users can choo...
Volume Profile (Maps) [LuxAlgo]
https://www.tradingview.com/script/Z8loUcRj-Volume-Profile-Maps-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
891
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("Volume Profile (Maps) [LuxAlgo]", shorttitle="LuxAlgo - Volume Profile (Maps)", max_lines_count = 500, max_boxes_count =...
Smart Money Range [ChartPrime]
https://www.tradingview.com/script/84zEwHEm-Smart-Money-Range-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
1,216
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("Smart Money Range [ChartPrime]",shorttitle = "SMR [ChartPrime]" ,overlay = true,max_boxes_count = 500,max_bars_back = 2000) string visual ...
Map example
https://www.tradingview.com/script/znMMXbW8-Map-example/
Sharad_Gaikwad
https://www.tradingview.com/u/Sharad_Gaikwad/
64
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/ // © Sharad_Gaikwad tt1 = "Maximum number of crossover/crossunder. Each time price crosses support/resistance line, it is counted as a cross and when such crosses reaches 'Max crossover/crossunder' the support...
HTF Oscillators RSI/ROC/MFI/CCI/AO - Dynamic Smoothing
https://www.tradingview.com/script/v4RLkfEB-HTF-Oscillators-RSI-ROC-MFI-CCI-AO-Dynamic-Smoothing/
Harrocop
https://www.tradingview.com/u/Harrocop/
35
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/ // © Harrocop //////////////////////////////////////////////////////////////////////////////////////// // HTF Oscillator multy type filter - Dynamic Smoothing // - Option to change high time frame settings // ...
Adaptive MACD [LuxAlgo]
https://www.tradingview.com/script/kBHEpriQ-Adaptive-MACD-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,662
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("Adaptive MACD [LuxAlgo]", "LuxAlgo - Adaptive MACD") //-----------------------------------------------------------------...
TICK Strength Background Shade
https://www.tradingview.com/script/gVMdJLH5-TICK-Strength-Background-Shade/
BigGuavaTrading
https://www.tradingview.com/u/BigGuavaTrading/
34
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/ // © BigGuavaTrading //@version=5 indicator("TICK Strength Background Shade", "TICK Strength", true) //get TICK data tH = input(599, "Strong TICK Strength", group = "Background Color TICK Strength Identifie...
Rain Flow Candles
https://www.tradingview.com/script/d4Zis74s-Rain-Flow-Candles/
KioseffTrading
https://www.tradingview.com/u/KioseffTrading/
597
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/ // © KioseffTrading // //@version=5 indicator("Rain Flow Candles", overlay = true, max_boxes_count = 500, max_lines_count = 500, max_labels_count = 500) auto = input.bool (defval = true, title = "A...
Adaptive Trend Indicator [Quantigenics]
https://www.tradingview.com/script/tYda13WA-Adaptive-Trend-Indicator-Quantigenics/
Quantigenics
https://www.tradingview.com/u/Quantigenics/
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/ // © Quantigenics //@version=5 indicator("Adaptive Trend ",overlay = true) AdapTrendLength = input.int(defval = 5,title = "Adaptive Trend Length") UpColor = input.color(defval = color.aqua,title = "Up...
Price Action Concepts [StratifyTrade]
https://www.tradingview.com/script/dqfTA4kM-Price-Action-Concepts-StratifyTrade/
StratifyTrade
https://www.tradingview.com/u/StratifyTrade/
2,248
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/ // © StratifyTrade - formerly know as HunterAlgos //@version=5 indicator("Price Action Concepts [StratifyTrade]", shorttitle = "Price Action Concepts [1.2.1]", ov...
AI Moving Average (Expo)
https://www.tradingview.com/script/zgEx7k4v-AI-Moving-Average-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
1,125
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/ //@version=5 indicator("AI Moving Average (Expo)", overlay=true) // ~~ ToolTips { t1 ="Number of neighbors used in the KNN algorithm. Increasing 'k' can make the...
Support and Resistance Levels and Zones [Quantigenics]
https://www.tradingview.com/script/qFgBi7oT-Support-and-Resistance-Levels-and-Zones-Quantigenics/
Quantigenics
https://www.tradingview.com/u/Quantigenics/
88
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/ // © Quantigenics //@version=5 indicator("Support and Resistance Levels and Zones [Quantigenics]",overlay = true,max_labels_count = 500,max_boxes_count = 500) ///////////////// //Inputs//////// ///////////////...
Expansion/Contraction Indicator (ECI) [Angel Algo]
https://www.tradingview.com/script/lp7RoKnM-Expansion-Contraction-Indicator-ECI-Angel-Algo/
AngelAlgo
https://www.tradingview.com/u/AngelAlgo/
37
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/ //@version=5 indicator("Expansion/Contraction Indicator (ECI) [Angel Algo]", shorttitle = "ECI [Angel Algo]", overlay=false) // User-defined input for the indicator period Period = input.int(14, title...
Momentum Probability Oscillator [SS]
https://www.tradingview.com/script/l2bbfb1G-Momentum-Probability-Oscillator-SS/
Steversteves
https://www.tradingview.com/u/Steversteves/
188
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/ // /$$$$$$ /$$ /$$ // /$$__ $$ | $$ | $$ ...
Moving Average Continuity [QuantVue]
https://www.tradingview.com/script/UqHC9TlS-Moving-Average-Continuity-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
66
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('Moving Average Continuity [QuantVue]', overlay = true) tt = 'Please select a chart time frame lower than or equal to your lowest selected moving average time frame' // i...
Z-Score Weighted Moving Averages
https://www.tradingview.com/script/QeroyX1e-Z-Score-Weighted-Moving-Averages/
federalTacos5392b
https://www.tradingview.com/u/federalTacos5392b/
26
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/ // © federalTacos5392b //@version=5 indicator("Z-Score Weighted Moving Averages", overlay = true) // Input parameters lookback_period = input(14, title = "Lookback Period") smoothing_period = input(14, title ...
Engulfing Box & Lines
https://www.tradingview.com/script/SoXHpA6P-Engulfing-Box-Lines/
AleSaira
https://www.tradingview.com/u/AleSaira/
46
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/ // © AleSaira //@version=5 indicator(title="Engulfing Box & Lines", shorttitle="Engulfing Box&Lines", overlay=true) ema200 = ta.ema (close, length=200) bodySize = math.abs ...
McClellan Indicators (Oscillator, Summation Index w/ RSI & MACD)
https://www.tradingview.com/script/i6LNu8wO-McClellan-Indicators-Oscillator-Summation-Index-w-RSI-MACD/
crutchie
https://www.tradingview.com/u/crutchie/
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/ // © crutchie //@version=5 indicator("McClellan Indicators", shorttitle = "Mkt Internals") // Inputs exchange = input.string("NYSE", options = ["NYSE", "Nasdaq"]) Indicator = input.string('Oscillator', 'Indic...
Key Levels (Daily Percentages)
https://www.tradingview.com/script/ngtQPxWS-Key-Levels-Daily-Percentages/
liquid-trader
https://www.tradingview.com/u/liquid-trader/
108
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 progressively draws daily percentage levels, normalized to // the first market bar. Percentages are one of the most common ways to measure pric...
Exchange Net Highs-Lows
https://www.tradingview.com/script/T5ypw8Mk-Exchange-Net-Highs-Lows/
crutchie
https://www.tradingview.com/u/crutchie/
35
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/ // © crutchie //@version=5 indicator(title="Exchange Net Highs-Lows", shorttitle="Net Highs-Lows") //Inputs exchange = input.string("NYSE", options = ["NYSE", "Nasdaq"]) MA_length = input(50, "MA Length") //...
[SS] Linear Modeler
https://www.tradingview.com/script/fLeTgfxW-SS-Linear-Modeler/
Steversteves
https://www.tradingview.com/u/Steversteves/
282
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/ // /$$$$$$ /$$ /$$ // /$$__ $$ | $$ | $$ ...
Hurst Exponent (Dubuc's variation method)
https://www.tradingview.com/script/v7SnbHhU-Hurst-Exponent-Dubuc-s-variation-method/
and_then_it_CRASHED
https://www.tradingview.com/u/and_then_it_CRASHED/
15
library
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/ // Copyright ©2022 and_then_it_CRASHED. // This is an implementation of Dubuc's variation method for estimating the Hurst exponent. // Dubuc B, Quiniou JF, Roques-Carmes C, Tricot C. Evaluating the fractal dim...
MACD Bands - Multi Timeframe [TradeMaster Lite]
https://www.tradingview.com/script/gfh8aIiA-MACD-Bands-Multi-Timeframe-TradeMaster-Lite/
trademasterindicator
https://www.tradingview.com/u/trademasterindicator/
352
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/ // Copyright (c) 2023 trademasterindicator. All rights reserved. // The Pinescript source code ("MACD Bands - Multi Timeframe [TradeMaster Lite]") is exclusively licensed to trademasterindicator TradingView acc...
NetLiquidityLibrary
https://www.tradingview.com/script/Ev9ue1cv-NetLiquidityLibrary/
calebsandfort
https://www.tradingview.com/u/calebsandfort/
60
library
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/ // © calebsandfort //@version=5 // @description The Net Liquidity Library provides daily values for net liquidity. Net liquidity is measured as Fed Balance Sheet - Treasury General Account - Reverse Repo. Tim...
StringStringHashmap
https://www.tradingview.com/script/RSLPnjKN/
gianlucac
https://www.tradingview.com/u/gianlucac/
0
library
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/ // © gianlucac // code took and readapted from: © ramihoteit321 //@version=5 //@description A simple implementation of a key string to string value dictionary in pinescript library('StringStringHashmap', fals...
Support & Resistance AI (K means/median) [ThinkLogicAI]
https://www.tradingview.com/script/FwB6GWPC-Support-Resistance-AI-K-means-median-ThinkLogicAI/
ThinkLogicAI
https://www.tradingview.com/u/ThinkLogicAI/
1,187
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/ // © ThinkLogicAI //@version=5 indicator("K clustering", overlay = true, max_lines_count = 10, max_labels_count = 251) //inputs k = input.int(3, "Number of clusters", minval = 3, maxval = 5, step = 1) cent_...
Seasonal - Trading Day of Month
https://www.tradingview.com/script/okZH3MgH/
sammypi
https://www.tradingview.com/u/sammypi/
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/ // © sammypi //@version=5 indicator("Seasonal", overlay = true) i_position = input.string("bottom_right", "Position", options=["top_left", "top_center", "top_right", "middle_left", "middle_center", "middle_ri...
Market Structure
https://www.tradingview.com/script/MfVtpaOZ-Market-Structure/
cryptonnnite
https://www.tradingview.com/u/cryptonnnite/
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/ // © cryptonnnite //@version=5 indicator( "Market Structure", overlay = true, max_bars_back = 5000, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) //#region[Inputs] _showST = input.bool...
Volume SuperTrend AI (Expo)
https://www.tradingview.com/script/eTgP2ymK-Volume-SuperTrend-AI-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
2,430
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("Volume SuperTrend AI (Expo)", overlay=true) // ~~ ToolTips { t1="Number of nearest neighbors in KNN algorithm (k): Incre...
KeitoFX Dynamic Indicator Free vers.
https://www.tradingview.com/script/YbE7gfGT-KeitoFX-Dynamic-Indicator-Free-vers/
uniuxfu
https://www.tradingview.com/u/uniuxfu/
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/ // © uniuxfu //@version=5 indicator("KeitoFX Dynamic Indicator Free vers.", overlay=true) // Check if the current timeframe is between 1m and 5m isAllowedTimeframe() => timeframe.multiplier >= 1 and timef...
Bolton-Tremblay Index
https://www.tradingview.com/script/DAqco300-Bolton-Tremblay-Index/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
105
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/ // © QuantiLuxe //@version=5 indicator("Bolton-Tremblay Index", "[Ʌ] -‌ BOLTR", false) type bar float o = open float h = high float l = low float...
MarketSmith Daily Market Indicators
https://www.tradingview.com/script/W08L50WQ-MarketSmith-Daily-Market-Indicators/
Amphibiantrading
https://www.tradingview.com/u/Amphibiantrading/
314
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("Marketsmith Daily Market Indicators", shorttitle = 'MSDI') //----------inputs----------// index = input.string('Nasdaq', 'Index for Data', options = ['Nasda...
Liquidity Levels/Voids (VP) [LuxAlgo]
https://www.tradingview.com/script/3ONrWovL-Liquidity-Levels-Voids-VP-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,809
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("Liquidity Levels/Voids (VP) [LuxAlgo]", "LuxAlgo - Liquidity Levels/Voids (VP)", true, max_bars_back = 5000, max_boxes...
Short Term IndeX
https://www.tradingview.com/script/2OTubMqG-Short-Term-IndeX/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
164
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/ // © QuantiLuxe //@version=5 indicator("Short Term IndeX", "[Ʌ] -‌ STIX", false) type bar float o = open float h = high float l = low float c = c...
Dynamic Liquidity Map [Kioseff Trading]
https://www.tradingview.com/script/42RzVE1t-Dynamic-Liquidity-Map-Kioseff-Trading/
KioseffTrading
https://www.tradingview.com/u/KioseffTrading/
194
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/ // © KioseffTrading //@version=5 indicator("Vol Oi HeatMap", overlay = true, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) import PineCoders/Time/4 as pct import RicardoSantos/MathOper...
PDHL levels with INTRADAY Auto FIB
https://www.tradingview.com/script/qyZJ0Stp-PDHL-levels-with-INTRADAY-Auto-FIB/
vatsanuj
https://www.tradingview.com/u/vatsanuj/
56
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/ // © vatsanuj //INTRADAY day AUTO Fib also includes PDHL levels + EMA20/50/200 + VWAP -- Enjoy--Dr.Vats //@version=5 indicator(title='INTRADAY Auto FIB with PDHL levels', shorttitle='Intraday FIB', overlay=tru...
IND-Range Box [Salar Kamjoo]
https://www.tradingview.com/script/3nybP1NZ-IND-Range-Box-Salar-Kamjoo/
salarkamjoo
https://www.tradingview.com/u/salarkamjoo/
181
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/ // © salarkamjoo // $KMagician/* //@version=5 indicator('IND-Range Box [Salar kamjoo]', 'Range Boxes [Salar kamjoo]', true, max_boxes_count = 500) // Inputs ==========================================...
Inverse FVG with Rejections [TFO]
https://www.tradingview.com/script/arQP5Q2f-Inverse-FVG-with-Rejections-TFO/
tradeforopp
https://www.tradingview.com/u/tradeforopp/
1,801
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("Inverse FVG with Rejections [TFO]", "Inverse FVG [TFO]", true) // -------------------------------------------------- Inputs -------------------------------------------...
Spot line
https://www.tradingview.com/script/E0vncTIR-Spot-line/
Kerbal
https://www.tradingview.com/u/Kerbal/
3
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/ // © Kerbal //@version=5 indicator("Spot line", overlay = true) source = input.source(close, "Source") color kuCoinColor = color.purple color coinbaseColor = color.orange color binanceColor = color.blue int li...
Doji Trender
https://www.tradingview.com/script/vAllG7Mo-Doji-Trender/
Kerbal
https://www.tradingview.com/u/Kerbal/
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/ // © Kerbal //@version=5 indicator("Doji Trender", overlay = true, max_lines_count = 500, max_bars_back = 5000) float dojiPercent = input.float(0.00025, "Doji O/C percent", minval = 0.00001, step = 0.00001) in...
NQ 7 Index
https://www.tradingview.com/script/prlBbc92-NQ-7-Index/
RaenonX
https://www.tradingview.com/u/RaenonX/
21
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/ // © RaenonX //@version=5 indicator("NQ 7 Index", overlay = true) divisor = input.int(1000000000, title = "Divisor") candle_up = #26a699 candle_down = #ef5350 [aapl_o, aapl_h, aapl_l, aapl_c] = request.secu...
Exhaustion Signal
https://www.tradingview.com/script/VFjyDUJx-Exhaustion-Signal/
ChartingCycles
https://www.tradingview.com/u/ChartingCycles/
327
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/ //@version=5 indicator(title='Exhaustion Signal', shorttitle='Exhaustion', overlay=true, timeframe='') Candles = input.int(9,"Candle Count") Candles2 = input.int(12,"Candle Count") // // CALCS /////...
AI SuperTrend Clustering Oscillator [LuxAlgo]
https://www.tradingview.com/script/y2WjAnHA-AI-SuperTrend-Clustering-Oscillator-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,315
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("AI SuperTrend Clustering Oscillator [LuxAlgo]", "LuxAlgo - AI SuperTrend Clustering Oscillator") //---------------------...
Exceptional Volume Spike - Potential Trend Reversal Indicator
https://www.tradingview.com/script/pT083ycf-Exceptional-Volume-Spike-Potential-Trend-Reversal-Indicator/
Tradager
https://www.tradingview.com/u/Tradager/
50
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/ // © Tradager //@version=5 indicator(title="Trend Reversal Indicator", shorttitle="TRI", overlay=true) // Input parameters with default values relative_volume_threshold = input(4.0, title="Relative Volume Thr...
HTF Trend Filter - Dynamic Smoothing
https://www.tradingview.com/script/WSfUYnNA-HTF-Trend-Filter-Dynamic-Smoothing/
Harrocop
https://www.tradingview.com/u/Harrocop/
122
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/ // © Harrocop //////////////////////////////////////////////////////////////////////////////////////// // HTF Trend Filter - Dynamic Smoothing // - Option to change high time frame settings // - Option to choo...
MACD HIstgramMA signl Crossing
https://www.tradingview.com/script/luZytJkk/
JFX_TV
https://www.tradingview.com/u/JFX_TV/
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/ // jfx_1503 //@version=5 indicator("MACD") // 値の取得 fast_length=input.int(12,"Fast Length") slow_length=input.int(26,"Slow Length") src=input.source(close,"Source") signal_length=input.int(10,"Fast Length",max...
Bollinger Band Percentile Suite
https://www.tradingview.com/script/hA1zFpuC-Bollinger-Band-Percentile-Suite/
QuantiLuxe
https://www.tradingview.com/u/QuantiLuxe/
278
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/ // © QuantiLuxe //@version=5 indicator("Bollinger Band Percent Suite", "{Ʌ} -‌ 𝐵𝐵𝒫𝒸𝓉 𝒮𝓊𝒾𝓉𝑒", false) f_kama(src, len, kamaf, kamas) => white = math....
OBV Oscillator Volume Filter
https://www.tradingview.com/script/InJFzCSt-OBV-Oscillator-Volume-Filter/
Harrocop
https://www.tradingview.com/u/Harrocop/
110
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/ // © Harrocop // ------------------------------------------------------------------------------------------------------ // // Script Summary: // - The indicator calculates the on balance volume (OBV) and is pl...
Gaussian Average Rate Oscillator
https://www.tradingview.com/script/a20Xmcfb-Gaussian-Average-Rate-Oscillator/
DraftVenture
https://www.tradingview.com/u/DraftVenture/
30
study
5
MPL-2.0
// This source code is subject to the terms of the Mozilla Public License 2.0 // © DraftVenture //@version=5 indicator("Gaussian Average Rate Oscillator", shorttitle = "GARO", overlay=false) // Input parameters source = input(ohlc4, title = "Source") windowsize = input.int(title="Gaussian Length", defval=26) maLength...
Implied Range from Options [SS]
https://www.tradingview.com/script/mKFQ2LRS-Implied-Range-from-Options-SS/
Steversteves
https://www.tradingview.com/u/Steversteves/
154
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/ // /$$$$$$ /$$ /$$ // /$$__ $$ | $$ | $$ ...
Random Market «NoaTrader»
https://www.tradingview.com/script/hnXsvFli-Random-Market-NoaTrader/
NoaTrader
https://www.tradingview.com/u/NoaTrader/
4
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/ // © NoaTrader //@version=5 indicator("Random Market «NoaTrader»",overlay = false) var start = input.float(1000,"Start Value") var devider_max = input.float(100,"Devider Max") var use_random_seed = input.bool...
SuperTrend AI (Clustering) [LuxAlgo]
https://www.tradingview.com/script/wP7WWjLL-SuperTrend-AI-Clustering-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
6,066
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("SuperTrend AI (Clustering) [LuxAlgo]", "LuxAlgo - SuperTrend AI", overlay = true, max_labels_count = 500) //-----------------...
Monday Session High/Low
https://www.tradingview.com/script/e3hAIRsL-Monday-Session-High-Low/
rahaidar
https://www.tradingview.com/u/rahaidar/
26
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/ // © rahaidar //@version=5 indicator("[2023] Monday Session High/Low", max_lines_count=500, max_labels_count=500, overlay=true, max_bars_back=5000,max_boxes_count = 500) type MONDAY int [] uid line...