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
SMA Cross with a Price Filter
https://www.tradingview.com/script/A1IRXgJM-SMA-Cross-with-a-Price-Filter/
Wormhole007
https://www.tradingview.com/u/Wormhole007/
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/ // © Wormhole007 //@version=5 indicator("SMA Cross with a Filter", overlay=true) // Input for the length of the SMA smaLength = input(200, title="SMA Length") // Input for the percentage threshold threshold...
成交额
https://www.tradingview.com/script/sXeeG50c/
qqqq95
https://www.tradingview.com/u/qqqq95/
1
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/ // © qqqq95 //@version=5 indicator("成交额") plot(volume*(close+open+high+low)/4 , style =plot.style_columns) // TSO = request.financial("BINANCE:BTCUSDT", "EARNINGS_PER_SHARE", "TTM") // MarketCap = TSO*close //...
3 EMA
https://www.tradingview.com/script/LMSsn3gx-3-EMA/
jatinder.sodhi
https://www.tradingview.com/u/jatinder.sodhi/
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/ // © jatinder.sodhi //@version=5 //plot(ta.sMA(close,5)) //indicator("ta.sma") indicator(title="ta.ema", shorttitle="8/21EMA", overlay=true) m8=ta.ema(close, input(8)) m21=ta.ema(close, input(21)) m20...
Combined MAs
https://www.tradingview.com/script/n8uSV163/
OkanAkarsu1
https://www.tradingview.com/u/OkanAkarsu1/
0
study
5
MPL-2.0
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © okan_akarsu1 //@version=5 indicator("Combined MAs", shorttitle="Combined MAs", overlay=true) // EMA calculations ema5 = ta.ema(close, 5) ema13 = ta.ema(close, 13) ema21 = ta.ema(close, 21) ema50 = ...
NYSE Advance/Decline - OM
https://www.tradingview.com/script/CAEbEH6d-NYSE-Advance-Decline-OM/
OkoMoye
https://www.tradingview.com/u/OkoMoye/
0
study
5
MPL-2.0
// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © OkoMoye //@version=5 //ADL Plotting indicator("NYSE Advance/Decline - OM", 'NYSE Advance/Decline') snp = request.security("SPX", timeframe = timeframe.period, expression = close) ad = request.secur...
Custom Price Levels and Averages
https://www.tradingview.com/script/nLm0TsB4-Custom-Price-Levels-and-Averages/
drmch2020
https://www.tradingview.com/u/drmch2020/
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/ // © drmch2020 //@version=5 indicator("Custom Price Levels and Averages", shorttitle="CPLA", overlay=true) // Input parameters inputTimeframe = input("D", title="Input Timeframe") distancePercentageUp = input...
Super Profit sell and buy
https://www.tradingview.com/script/wFtU6ORD/
angel1224_sanchez
https://www.tradingview.com/u/angel1224_sanchez/
4
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/ // © angel1224_sanchez //@version=4 study("MACD y EMA señales de compra y venta con filtro ATR", overlay=true) // Definimos la EMA de 20 periodos ema20 = ema(close, 20) // Definimos el MACD [macdLine, signal...
Range Breakout Signals (Intrabar) [LuxAlgo]
https://www.tradingview.com/script/2Zsl3LwQ-Range-Breakout-Signals-Intrabar-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
892
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("Range Breakout Signals (Intrabar) [LuxAlgo]", "LuxAlgo - Range Breakout Signals (Intrabar)", overlay = true) //--------------...
Global Central Banks Balance Sheet USD-Adjusted
https://www.tradingview.com/script/S7VdlN4P-Global-Central-Banks-Balance-Sheet-USD-Adjusted/
SirChub
https://www.tradingview.com/u/SirChub/
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/ // © SirChub //@version=5 indicator("Global Central Banks Balance Sheet USD-Adjusted", overlay=true, scale=scale.right) i_res = input.timeframe('D', "Resolution", options=['D', 'W', 'M']) unit_input = input.s...
Parabolic Zones
https://www.tradingview.com/script/MjyeWbzi-Parabolic-Zones/
uzairtahiroffical
https://www.tradingview.com/u/uzairtahiroffical/
1
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/ // © UzairTahir //@version=5 indicator("Parabolic Zonesusd", overlay=true) start = input(0.02) increment = input(0.02) maximum = input(0.2, "Max Value") sar_values = ta.sar(start, increment, maximum) sar_val...
[dharmatech] Area Under Yield Curve : US
https://www.tradingview.com/script/CLC3VxCW-dharmatech-Area-Under-Yield-Curve-US/
dharmatech
https://www.tradingview.com/u/dharmatech/
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/ // © dharmatech //@version=5 // indicator("[dharmatech] Area Under Yield Curve : US", "Area Under Yield Curve : US", overlay = true) indicator("[dharmatech] Area Under Yield Curve : US", "Area Under Yield Cur...
highwindssoon0411
https://www.tradingview.com/script/hEP7lr0X-highwindssoon0411/
thenmozhys
https://www.tradingview.com/u/thenmozhys/
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/ // © thenmozhys //@version=5 indicator("highwinds soon", overlay=true, timeframe="", timeframe_gaps=true) atrPeriod = input(10, "ATR Length") factor = input.float(3.0, "Factor", step = 0.01) [supertrend, dir...
TotalCustom
https://www.tradingview.com/script/NHJ0TveP-TotalCustom/
AJMourot
https://www.tradingview.com/u/AJMourot/
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/ // © AJMourot //@version=5 indicator("TotalCustom", overlay=true, scale=scale.left) // Fetching MarketCap of each symbol: MC_CAKE = request.security("CAKE", timeframe.period, close) MC_ADA = request.security(...
Alert on Candle Close
https://www.tradingview.com/script/4UCBJDQS-Alert-on-Candle-Close/
SimpleTradingTools
https://www.tradingview.com/u/SimpleTradingTools/
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/ // © SimpleTradingTools //@version=5 indicator("Alert on Candle Close", overlay = true) var string msg = "{{interval}} Close on {{exchange}}:{{ticker}}\nPrice {{close}}" alertcondition(timenow >= time_close, t...
Tops & Bottoms - Time of Day Report
https://www.tradingview.com/script/ucux0RJL-Tops-Bottoms-Time-of-Day-Report/
sbtnc
https://www.tradingview.com/u/sbtnc/
457
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/ // © sbtnc // Created: 2023-09-26 // Last modified: 2023-11-15 // Version 2.0 //@version=5 indicator("Tops & Bottoms - Time of Day Report", format = format.percent, max_labels_count = 72) //----------------...
New York Sessions Morning, Lunch and afternoon. AMK
https://www.tradingview.com/script/Yxew6PJC-New-York-Sessions-Morning-Lunch-and-afternoon-AMK/
Ahmed_Alshammari
https://www.tradingview.com/u/Ahmed_Alshammari/
1
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/ // © mickeyahs, tony-ho //@version=4 study("New York Sessions with Timezone", shorttitle="NY Sessions", overlay=true) // User Inputs for New York Sessions and Times show_rectangleNY = input(true, title...
sᴛᴀɢᴇ ᴀɴᴀʏʟsɪs
https://www.tradingview.com/script/9g0z2oBy-s%E1%B4%9B%E1%B4%80%C9%A2%E1%B4%87-%E1%B4%80%C9%B4%E1%B4%80%CA%8F%CA%9Fs%C9%AAs/
thebearfib
https://www.tradingview.com/u/thebearfib/
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/ // © thebearfib //@version=5 indicator("sᴛᴀɢᴇ ᴀɴᴀʏʟsɪs", overlay = true) sma30 = ta.sma(close,30) plot(sma30,title = "SMA 30", color=color.rgb(255, 0, 0), linewidth=2, display=display.all) // // ——————...
Price Volume Divergence
https://www.tradingview.com/script/Znymjshs-Price-Volume-Divergence/
kikfraben
https://www.tradingview.com/u/kikfraben/
27
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/ // © kikfraben // Updated last on Sep. 24, 2023 //@version=5 indicator("Price Volume Divergence", shorttitle = "PVD", overlay = false) // User Inputs pvd_cor_len = input(30, "PVD Length", group = "PVD Inputs"...
BearMetrics
https://www.tradingview.com/script/8ErgYJlr-BearMetrics/
thebearfib
https://www.tradingview.com/u/thebearfib/
18
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/ // © thebearfib // //@version=5 indicator("BearMetrics", overlay = true) // // ———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————— // ——————...
wosabi Investment assistant and Swing trading CRYPTO
https://www.tradingview.com/script/zuWSKfvk/
ahmadALwosabi
https://www.tradingview.com/u/ahmadALwosabi/
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/ // © ahmadALwosabi //@version=5 indicator("wosabi Investment assistant and Swing trading CRYPTO","waist",overlay = false) //خاص بمؤشرات المتوسطات widthInput_1 = input.int(20, minval=1, title="width line h...
Trendline Breakouts With Targets [ChartPrime]
https://www.tradingview.com/script/hb6J9iHI-Trendline-Breakouts-With-Targets-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
2,908
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("Trendline Breakouts With Targets [ Chartprime ]",shorttitle = "TBT [ Chartprime ]",overlay = true,max_bars_back = 500,max_lines_count = 500) bool ChartTime ...
AI Momentum [YinYang]
https://www.tradingview.com/script/NKUsm5uR-AI-Momentum-YinYang/
YinYangAlgorithms
https://www.tradingview.com/u/YinYangAlgorithms/
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/ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
Weighted Bulls-Bears Variety Smoothed [Loxx]
https://www.tradingview.com/script/fnOC5TyI-Weighted-Bulls-Bears-Variety-Smoothed-Loxx/
loxx
https://www.tradingview.com/u/loxx/
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/ // © loxx //@version=5 indicator("Weighted Bulls-Bears Variety Smoothed [Loxx]", overlay = false, timeframe="", timeframe_gaps = true) color greencolor = #2DD204 color redcolor = #D2042D fe...
HTF Fair Value Gap [LuxAlgo]
https://www.tradingview.com/script/oOPK4P2K-HTF-Fair-Value-Gap-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,378
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("HTF Fair Value Gap [LuxAlgo]", "LuxAlgo - HTF Fair Value Gap", overlay = true) //--------------------------------------------...
Seasonal Trend by LogReturn
https://www.tradingview.com/script/z2WAGp3e/
bronko791
https://www.tradingview.com/u/bronko791/
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/ // © bronko791 //@version=5 indicator("Seasonal Trend by LogReturn", overlay = false, max_lines_count = 500) closeSrc = input.source(close, "Source") int lookbackYears = input.int(10, "Past Years", tooltip = "...
MACD Area
https://www.tradingview.com/script/StYpDTe2-MACD-Area/
algotraderdev
https://www.tradingview.com/u/algotraderdev/
143
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/ // ©algotraderdev // @version=5 indicator('MACD Area', explicit_plot_zorder = true) float SRC = input.source(close, 'Source') int FAST_LEN = input.int(12, 'Fast Length', minval = 1) int SLOW_LEN = input.int(2...
VWAP with Characterization
https://www.tradingview.com/script/HTvXJACT-VWAP-with-Characterization/
AleSaira
https://www.tradingview.com/u/AleSaira/
63
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("VWAP with Characterization", overlay = true) //============///////========================...
Price Volume Trend Crosses
https://www.tradingview.com/script/OY5vcdNI-Price-Volume-Trend-Crosses/
kikfraben
https://www.tradingview.com/u/kikfraben/
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/ // © kikfraben // Updated last on Sep. 22, 2023 //@version=5 indicator("Price Volume Trend Crosses ", "PVTC ", false, format.volume) // PVTC User Inputs pvt_sig_length = input(22, "PVTC Signal Length", group ...
Monte Carlo Simulation - Your Strategy [Kioseff Trading]
https://www.tradingview.com/script/cvEVOXaH-Monte-Carlo-Simulation-Your-Strategy-Kioseff-Trading/
KioseffTrading
https://www.tradingview.com/u/KioseffTrading/
454
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("Monte Carlo Simulation [Kioseff Trading]", max_lines_count = 500, overlay = false, max_labels_count = 500, max_boxes_count = 500) justPriceS = input.string (defva...
The Opening Range / First Bar By Market Mindset - Zero To Endles
https://www.tradingview.com/script/sfZQlYhj-The-Opening-Range-First-Bar-By-Market-Mindset-Zero-To-Endles/
marketmindset
https://www.tradingview.com/u/marketmindset/
83
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/ // © marketmindset //Copied from v14 AUTO = "Auto" DAILY = "Daily" WEEKLY = "Weekly" MONTHLY = "Monthly" QUARTERLY = "Quarterly" HALFYEARLY = "Half Yearly" YEARL...
Extended Hour Candle
https://www.tradingview.com/script/LweEbTug-Extended-Hour-Candle/
fyntrade
https://www.tradingview.com/u/fyntrade/
11
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/ // © fyntrade // Version 1.1.2 - 23 Sep 2023 //@version=5 indicator("Extended Hour Candle", overlay = true, shorttitle = "Ext") i_col_up = input.color(defval = #26a69a, title = "Up Color", group = "Colors") i...
YD_Volume_Alert
https://www.tradingview.com/script/ZzGrCTcr/
Yonsei_dent
https://www.tradingview.com/u/Yonsei_dent/
182
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/ // © Yonsei_dent // // \\ // ⇗⩸⇖ || || ⇗⁼⁼⁼⁼⁼ ∥⁼⁼⁼⁼ ⁼⁼₪⁼⁼ ₪₪⁼⁼⁼⁼⇘ // \\// ∥ ∥ ||\\ || ⇘‗‗‗‗‗ ∥‗‗‗‗ ‖ || ...
Auto trend overlay
https://www.tradingview.com/script/tFzmflNZ-Auto-trend-overlay/
alexhyer13
https://www.tradingview.com/u/alexhyer13/
18
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/ // © alexhyer13 //@version=5 indicator("Auto trend overlay",overlay=true) length=input.int(title="CMA Length", defval=42) color_overlay = input.bool(title="Overlay color (must change visual order to front)", ...
Triple Moving Averages + RSI Divergence + Trade Creator [CSJ7]
https://www.tradingview.com/script/QZNUZnFy-Triple-Moving-Averages-RSI-Divergence-Trade-Creator-CSJ7/
gtellezgiron2009
https://www.tradingview.com/u/gtellezgiron2009/
201
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/ // © gtellezgiron2009 //@version=5 indicator(title = "Triple Moving Averages + RSI Divergence + Trade Creator [CSJ7]", shorttitle = "Triple Moving Averages + Trade Creator [CSJ7]", overlay = true, max_bars_ba...
K's Reversal Indicator III
https://www.tradingview.com/script/8sEyrciq-K-s-Reversal-Indicator-III/
Sofien-Kaabar
https://www.tradingview.com/u/Sofien-Kaabar/
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/ // © Sofien-Kaabar //@version=5 indicator("K's Reversal Indicator III", overlay = true) // Defining the variables price_return = close - close[1] rsi = ta.rsi(close, 14) // Calculating the correlation of pri...
2Rsi buy & sell & candlesticks patterns in rsi[Trader's Journal]
https://www.tradingview.com/script/dLAssm8B-2Rsi-buy-sell-candlesticks-patterns-in-rsi-Trader-s-Journal/
SESE04
https://www.tradingview.com/u/SESE04/
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/ // © TRADERS JOURNAL //@version=5 indicator("2Rsi buy & sell & candlesticks patterns in rsi[Trader's Journal]", "RSI Buy Sell & Candlesticks patterns [Trader's Journal]", overlay = true, max_labels_count = 500...
Position Cost Distribution
https://www.tradingview.com/script/25py1UVB-Position-Cost-Distribution/
algotraderdev
https://www.tradingview.com/u/algotraderdev/
280
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/ // © algotraderdev // @version=5 indicator('Position Cost Distribution', overlay = true, max_lines_count = 500, max_bars_back = 500) import algotraderdev/contrast/1 //#region Inputs int LOOKBACK = input.int...
Vwap MTF
https://www.tradingview.com/script/zHRJrovA-Vwap-MTF/
SESE04
https://www.tradingview.com/u/SESE04/
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/ // © SESE04 TRADERS JOURNAL //@version=5 indicator('Vwap MTF', 'vwap Mtf', overlay=true, max_bars_back=501) // Fonction pour calculer le VWAP vwapSource(src, length) => sum = 0.0 sumVolume = 0.0 f...
Price Variation Percent (PVP)
https://www.tradingview.com/script/yRdlrXNy/
Jompatan
https://www.tradingview.com/u/Jompatan/
9
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/ // © Jompatan //@version=4 study("Price Variation Percent (PVP)") length = input(1,"Length (bars)") source = input(close, "Source") apper_band = input(1.0, "Apper Band (% variation)") lower_band = input(-1.0,...
TradersCheckList
https://www.tradingview.com/script/82xDyKe9-TradersCheckList/
goldmaxxx
https://www.tradingview.com/u/goldmaxxx/
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/ // © goldmaxxx //simple table - customizable. Can assist with identifying trends and fitting criteria depending on strategy. Manual //@version=5 indicator("Check List", shorttitle="Check List", overlay=true) ...
Abz US Real rates
https://www.tradingview.com/script/Wh3VEvu6-Abz-US-Real-rates/
Abzorba
https://www.tradingview.com/u/Abzorba/
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/. Original version by © MrDevDevy //FED Funds Rate vs Inflation //New: //I have added the US 10 year yield. When this is higher than inflation and the Fed Funds Rate and the US10Y is trending downwards, ...
Geometrical Mean Moving Average
https://www.tradingview.com/script/qTLAWmDW-Geometrical-Mean-Moving-Average/
ThiagoSchmitz
https://www.tradingview.com/u/ThiagoSchmitz/
11
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/ // © ThiagoSchmitz //@version=5 indicator("Geometrical Mean Moving Average", "GeoMMA", true) float source = input.source(close, "Source") int period = input.int(10, "Period") float exponent = 1.0 / period floa...
Test - Symbiotic Exiton Measure Enthropic Nexus indicator
https://www.tradingview.com/script/UbraQho2-Test-Symbiotic-Exiton-Measure-Enthropic-Nexus-indicator/
RicardoSantos
https://www.tradingview.com/u/RicardoSantos/
137
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("Test - Symbiotic Exiton Measure Enthropic Nexus indicator") // reference: // https://azeemba.com/posts/boundaries-of-predictability.html // The Symbiotic Exiton Mea...
Division with other simbol
https://www.tradingview.com/script/E43E3WkT/
derdavichu
https://www.tradingview.com/u/derdavichu/
1
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/ // © derdavichu //@version=5 indicator("Division with other simbol", overlay = false, shorttitle = "DIV") symbolInput = input.symbol("BTCARS", "Symbol") sourceInput = input.source(close, "Source") // This tak...
Kaschko's Seasonal Trend
https://www.tradingview.com/script/BEQsOqoT-Kaschko-s-Seasonal-Trend/
Kaschko
https://www.tradingview.com/u/Kaschko/
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/ // © Kaschko //@version=5 indicator("Kaschko's Seasonal Trend", shorttitle = "Seasonality", overlay = true, max_lines_count = 500, precision = 0) _stdays = input.string(group = "Daily timeframe", title = "T...
Cumulative Symbol
https://www.tradingview.com/script/svYxuKIR-Cumulative-Symbol/
syntaxgeek
https://www.tradingview.com/u/syntaxgeek/
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/ // © syntaxgeek // _____ _____ _____ _____ _____ _____ _____ ___...
Fibonacci Oscillator (Expo)
https://www.tradingview.com/script/KkAOEljd-Fibonacci-Oscillator-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
504
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("Fibonacci Oscillator (Expo)",overlay=false, precision = 1) //~~} // ~~ Inputs { oscType = input.string("RSI","Oscill...
YinYang Bar Forecast
https://www.tradingview.com/script/1QdV13JG-YinYang-Bar-Forecast/
YinYangAlgorithms
https://www.tradingview.com/u/YinYangAlgorithms/
81
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/ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
Tribute to David Paul
https://www.tradingview.com/script/xxO0M00v-Tribute-to-David-Paul/
LOKEN94
https://www.tradingview.com/u/LOKEN94/
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/ // © LOKEN94 // I made this indicator as a tribute to the late David Paul. // He mentioned quite a lot about 89 periods moving average, also the 21 and 55. //@version=5 indicator("Tribute to David Paul",s...
Daily Trend
https://www.tradingview.com/script/vndcKGWb-Daily-Trend/
ZakiBrecht
https://www.tradingview.com/u/ZakiBrecht/
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/ // © matHodl //@version=5 indicator("Daily Trend", overlay = true) res = input.timeframe("D", "Time Frame Analysis", group = "Past Candle Price") lb = input(1, "Bar Lookback", group = "Past Candle Price") mi...
Supertrend Targets [ChartPrime]
https://www.tradingview.com/script/SqWrqra4-Supertrend-Targets-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
388
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("Supertrend Targets [ChartPrime]", explicit_plot_zorder = true, overlay = true) source = input.string("HLCC4", "Source", ["Smooth", "Close", "Open", "High", "Low", "Hl2...
Tetra Trendline Indicator 2.0
https://www.tradingview.com/script/9WNHoldF/
egghen
https://www.tradingview.com/u/egghen/
18
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/ // © egghen //@version=5 indicator(title='Tetra Trendline Indicator 2.0', shorttitle='TTLI 2.0', overlay=true) // Define input parameters for trendlines showTrendline1 = input(true, title='Show Trendline 1') ...
Weighted Oscillator Convergence Divergence
https://www.tradingview.com/script/JAZ2GOdu-Weighted-Oscillator-Convergence-Divergence/
tseddik
https://www.tradingview.com/u/tseddik/
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/ // © tseddik //@version=5 indicator(title="Weighted Oscillator Convergence Divergence", shorttitle="WOCD", overlay=false, timeframe = '', timeframe_gaps = true) // Inputs length = input(9, title="Length") smo...
Fibonacci Ranges (Real-Time) [LuxAlgo]
https://www.tradingview.com/script/td8l5rTE-Fibonacci-Ranges-Real-Time-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
2,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("Fibonacci Ranges (Real-Time) [LuxAlgo]", shorttitle='LuxAlgo - Fibonacci Ranges (Real-Time)', max_lines_count=500, max_labels...
🐰Born4Trade
https://www.tradingview.com/script/5OKgLlO6-Born4Trade/
Born4Trade
https://www.tradingview.com/u/Born4Trade/
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/ // © Born4Trade //@version=5 indicator("🐰Born4Trade", overlay=true) High = request.security(syminfo.tickerid, "D", high, lookahead = barmerge.lookahead_on) Low = request.security(syminfo.tickerid, "D", low, l...
Rule of 16 - Lower
https://www.tradingview.com/script/Jy54RqN3-Rule-of-16-Lower/
thebearfib
https://www.tradingview.com/u/thebearfib/
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/ // © thebearfib // //@version=5 // //a level of 1.8 - Tells vix pricing in for spx move //According to the rule of 16, if the VIX is trading at 16, //then the SPX is estimated to see average daily moves up or...
ICT HTF FVGs (fadi)
https://www.tradingview.com/script/Cti9P1Ww-ICT-HTF-FVGs-fadi/
fadizeidan
https://www.tradingview.com/u/fadizeidan/
301
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/ // © fadizeidan // //@version=5 indicator("ICT HTF FVGs (fadi)", overlay=true, max_bars_back = 5000, max_lines_count = 500, max_labels_count = 500, max_boxes_count = 500) //+-----------------------------------...
Divergences Refurbished
https://www.tradingview.com/script/XOlWBNuN-Divergences-Refurbished/
andre_007
https://www.tradingview.com/u/andre_007/
345
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/ // @Thanks and credits: // © LonesomeTheBlue // Modified by © andre_007 // @description This is a script forked from LonesomeTheBlue's Divergence for Many Indicators v4. // It is a script...
Bollinger RSI Bands
https://www.tradingview.com/script/hPKHu9UA-Bollinger-RSI-Bands/
tseddik
https://www.tradingview.com/u/tseddik/
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/ // © tseddik //@version=5 indicator(title="Bollinger RSI Bands", shorttitle="BRSIB", format=format.price, precision=2, timeframe="", timeframe_gaps=true) // RSI Settings rsiLength = input.int(14, minval=1, ti...
Super SMA 5 8 13
https://www.tradingview.com/script/MX8EUksX/
tamerbozoglu
https://www.tradingview.com/u/tamerbozoglu/
116
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/ // © tamerbozoglu //@version=4 // ══════════════════════════════════════════════════════════════════════════════════════════════════ // //# * ═══════════════════════════════════════════════════════════════════...
Buy/Sell Box
https://www.tradingview.com/script/Q0pX4Ddc-Buy-Sell-Box/
AleSaira
https://www.tradingview.com/u/AleSaira/
72
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="Buy/Sell Box", shorttitle="Buy/Sell Box", overlay=true) //================================================================================================} // Input...
Forex & Stock Daily WatchList And Screener [M]
https://www.tradingview.com/script/7LWKEIkk-Forex-Stock-Daily-WatchList-And-Screener-M/
Milvetti
https://www.tradingview.com/u/Milvetti/
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/ // © Milvetti //@version=5 indicator("Forex & Stock Daily WatchList And Screener [M]",overlay = true) gI = "Indices" openIndices = input(true,"Show Indices Table",inline = "Ind",group = gI) indPos = input....
Smart Money Indicator
https://www.tradingview.com/script/k5XOwvdC-Smart-Money-Indicator/
hiren147
https://www.tradingview.com/u/hiren147/
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/ // © hiren147 //@version=5 indicator("Smart Money Indicator", overlay = true) // Input for the length of the volume moving average length = input.int(20, title = "Volume MA Length") // Calculate the volume m...
RSI Trend Detector PSAR Based
https://www.tradingview.com/script/5nliVT2q-RSI-Trend-Detector-PSAR-Based/
traderharikrishna
https://www.tradingview.com/u/traderharikrishna/
103
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("RSI Trend Detector PSAR Based") rsilen=input.int(14,"RSI Length") src=input.source(close,"Source") rsi=ta.rsi(src,rsilen) u=hline(60,display=display.none) d=hlin...
HTF Candle Insights (Expo)
https://www.tradingview.com/script/tG4HXiE1-HTF-Candle-Insights-Expo/
Zeiierman
https://www.tradingview.com/u/Zeiierman/
648
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("HTF Candle Insights (Expo)",overlay = true,max_bars_back = 500, max_boxes_count = 500) // ~~ Inputs { tf = input.tim...
Double MACD Pattern 1.0
https://www.tradingview.com/script/rIBsVI8Z/
egghen
https://www.tradingview.com/u/egghen/
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/ // © egghen //@version=5 indicator('Double MACD Pattern 1.0', shorttitle='D-MACD-P 1.0') // MACD Settings slowLength_1 = input(title='MACD 1 Fast Length', defval=12, group="MACD 1") fastLength_1 = input(title...
SMI Ergodic Indicator + Oscillator
https://www.tradingview.com/script/eP4Z46mQ-SMI-Ergodic-Indicator-Oscillator/
The_Estonian_
https://www.tradingview.com/u/The_Estonian_/
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/ // © The_Estonian_ //@version=5 indicator(title="SMI Ergodic Indicator+Oscillator", shorttitle="SMIIO", format=format.price, precision=4, timeframe="", timeframe_gaps=true) longlen = input.int(20, minval=1, ti...
Kawasaki_MFI
https://www.tradingview.com/script/UDxvdk0b/
KAWASAKI-AXIS
https://www.tradingview.com/u/KAWASAKI-AXIS/
11
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/ // © KAWASAKI-AXIS //@version=5 indicator(title="Kawasaki_MFI", overlay=true) my_high = request.security(syminfo.tickerid, "D", high) my_low = request.security(syminfo.tickerid, "D", low) my_close = request.s...
Supply Demand Profiles [LuxAlgo]
https://www.tradingview.com/script/0UysVHbl-Supply-Demand-Profiles-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
2,115
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("Supply Demand Profiles [LuxAlgo]", "LuxAlgo - Supply Demand Profiles", true, max_bars_back = 5000, max_boxes_count = 500, m...
TTP PNR filter
https://www.tradingview.com/script/mDvBlwsG-TTP-PNR-filter/
TheTradingParrot
https://www.tradingview.com/u/TheTradingParrot/
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/ // © TheTradingParrot //@version=5 indicator("TTP PNR filter v0.1.2",overlay=false) length = input(150) plow = input.float(0.0,"Percentile low",minval=0,maxval=100, inline = "a") phigh = input.float(1.0,"Perce...
Returns Model by Tenozen
https://www.tradingview.com/script/tYtLFMDU-Returns-Model-by-Tenozen/
Tenozen
https://www.tradingview.com/u/Tenozen/
36
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("Returns Model by Tenozen", overlay= false, precision = 7) true_log = input.bool(false, "Log on?") ret_len = input.int(20, "Return Gap Length") true_period = input.bool(fal...
Reversal Confirmations [QuantVue]
https://www.tradingview.com/script/3SuZmC5o-Reversal-Confirmations-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
380
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('Reversal Confirmations [QuantVue]', overlay = true) //----------inputs----------// lookback = input.int(50, 'Lookback Period', minval = 1, step = 1) downColor ...
Position calculator [krazke]
https://www.tradingview.com/script/uJDgv6tl-Position-calculator-krazke/
krazke
https://www.tradingview.com/u/krazke/
14
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/ // © krazke //@version=5 indicator("Position calculator", overlay = true) // MARK: - Constants LIQUIDATION_PERCENT = 100.0 LIQUIDATION_SL_PRICE_GAP = 3.0 // In percent DIRECTION_G_TITLE = "Directio...
Trend Lines [AstroHub]
https://www.tradingview.com/script/nlVXBeqg-trend-lines-astrohub/
AstroHub
https://www.tradingview.com/u/AstroHub/
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/ //@version=5 indicator("Trend Lines [AstroHub]", overlay=true) // Input parameters lookback = input(20, "Period") // Determining the high and low prices highs = ta.highest(high, lookback) lows = ta...
Hosoda Waves ABCDE
https://www.tradingview.com/script/eiR9SQX1/
WD_GANN
https://www.tradingview.com/u/WD_GANN/
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/ // © WD_GANN //@version=5 indicator("Hosoda Waves ABCDE",shorttitle="Hosoda Waves ABCDE", overlay=true) priceA = input.price(100, inline="PointA", confirm=true) timeA = input.time(timestamp("2020-02-20"), inli...
Percentage Range Consolidation Histogram
https://www.tradingview.com/script/XEybKoh8-Percentage-Range-Consolidation-Histogram/
Honestcowboy
https://www.tradingview.com/u/Honestcowboy/
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/ // © Honestcowboy //@version=5 indicator("Percentage Range Consolidation", overlay=false) //tooltips consolidationLengthTip = "The amount of bars script will use to measure width from highes...
MTF - Zigzag + Tech Indicators
https://www.tradingview.com/script/qyJipOeN-MTF-Zigzag-Tech-Indicators/
Sharad_Gaikwad
https://www.tradingview.com/u/Sharad_Gaikwad/
67
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 //#region General functions var tab = table.new(position=position.top_right, columns=7, rows=30,frame_color = color.yellow, frame_width = 1) msg(int row, int col, string msg_str, clr=color....
Intraday Session Table
https://www.tradingview.com/script/R5QGfsOz-Intraday-Session-Table/
avsr90
https://www.tradingview.com/u/avsr90/
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/ // © avsr90 //@version=5 /// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © avsr90 indicator("Intraday Session Table ",overlay =false,max_bars...
Alxuse MACD for tutorial
https://www.tradingview.com/script/bMMWr2L4-Alxuse-MACD-for-tutorial/
zarafshani20
https://www.tradingview.com/u/zarafshani20/
25
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/ // © zarafshani20 //@version=5 indicator(title="Alxuse MACD for tutorial", timeframe = "") fast_length = input(title="Fast Length", defval=12) slow_length = input(title="Slow Length", defval=26) upper_Band = in...
Alxuse Stochastic RSI for tutorial
https://www.tradingview.com/script/orlYeJFy-Alxuse-Stochastic-RSI-for-tutorial/
zarafshani20
https://www.tradingview.com/u/zarafshani20/
63
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/ // © zarafshani20 //@version=5 indicator(title="Alxuse Stochastic RSI for tutorial ", timeframe="") smoothK = input.int(3, "K", minval=1) smoothD = input.int(3, "D", minval=1) upper_Band = input(title = "Upper ...
Fibonacci Trailing Stop [LuxAlgo]
https://www.tradingview.com/script/yOGnpadz-Fibonacci-Trailing-Stop-LuxAlgo/
LuxAlgo
https://www.tradingview.com/u/LuxAlgo/
1,192
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("Fibonacci Trailing Stop [LuxAlgo]", "LuxAlgo - Fibonacci Trailing Stop", max_lines_count=500, max_labels_count=500, overlay=t...
Kviatek - Multi Hour VWAP
https://www.tradingview.com/script/B9bTJSVQ-Kviatek-Multi-Hour-VWAP/
hundredtoamillion
https://www.tradingview.com/u/hundredtoamillion/
73
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/ // © hundredtoamillion //@version=5 indicator('Kviatek - Multi Hour VWAP', overlay=true, max_boxes_count = 500) resolution1 = input.timeframe("D", "VWAP resolution") source = input.source(ohlc4, "VWAP ...
Search for consolidations - AstroHub
https://www.tradingview.com/script/RWibEU8M-search-for-consolidations-astrohub/
AstroHub
https://www.tradingview.com/u/AstroHub/
34
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/ // © AstroHub //@version=5 indicator("Search for consolidations", overlay=true) // Входные параметры consol_length = input(20, "consolidation") // Математическ...
Alxuse Supertrend 4EMA Buy and Sell for tutorial
https://www.tradingview.com/script/TpC5acre-Alxuse-Supertrend-4EMA-Buy-and-Sell-for-tutorial/
zarafshani20
https://www.tradingview.com/u/zarafshani20/
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/ // © zarafshani20 //@version=5 indicator('Alxuse Supertrend 4EMA Buy and Sell for tutorial', overlay=true, timeframe = "") MAprice = input(close) MAL1 = input.int(20, step=1, title='EMA 1') MAL2 = input.int(50,...
Ruth Buy/Sell Signal for Day Trade and Swing Trade
https://www.tradingview.com/script/hHnrUDk8-Ruth-Buy-Sell-Signal-for-Day-Trade-and-Swing-Trade/
akselanil
https://www.tradingview.com/u/akselanil/
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/ // Bu kaynak kod Ref Kafe İşletmeciliği Mimarlık ve Yazılım LTD. ŞTİ.'nin mülküdür. izinsiz kopyalamalarda cezai şartlar uygulanacaktır. // © akselanil //@version=5 indicator( title = "Ruthito, Free version Ru...
Encapsulation Box
https://www.tradingview.com/script/08Nflwm3-Encapsulation-Box/
AleSaira
https://www.tradingview.com/u/AleSaira/
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/ // © AleSaira //@version=5 indicator("Encapsulation Box", shorttitle = "Encapsulation Box", overlay = true) // Input for the number of horizontal candles in the box and box lines color boxWidth = input...
Moving Averages w/Signals [CSJ7]
https://www.tradingview.com/script/jTPqlwAd-Moving-Averages-w-Signals-CSJ7/
gtellezgiron2009
https://www.tradingview.com/u/gtellezgiron2009/
107
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/ // © gtellezgiron2009 //@version=5 indicator("Moving Averages w/Signals [CSJ7]", shorttitle = 'CSJ7 Moving Averages', overlay = true) //================================== // CONSTANTS //=====================...
True Range Moving Average Deviation
https://www.tradingview.com/script/HDbBPnRS-True-Range-Moving-Average-Deviation/
gabasco
https://www.tradingview.com/u/gabasco/
45
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/ // © gabasco //@version=5 indicator(title="True Range Moving Average Deviation", shorttitle="TRMAD", precision=2, timeframe="", overlay=false) // 1. Input themeInput = input.string("Standard", ...
Nadaraya-Watson Envelope: Modified by Yosiet
https://www.tradingview.com/script/DoOd6evK-Nadaraya-Watson-Envelope-Modified-by-Yosiet/
yosietserga
https://www.tradingview.com/u/yosietserga/
289
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/ // Inspired by LuxAlgo Nadaraya-Watson Envelope //@version=5 indicator("Nadaraya-Watson Envelope: Modified by Yosiet",overlay=true,max_bars_back=1000,max_lines_co...
Nitin Swing Trading
https://www.tradingview.com/script/bphw8qjA-Nitin-Swing-Trading/
ShareTrading_
https://www.tradingview.com/u/ShareTrading_/
27
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/ // © ShareTrading_ //@version=5 indicator(title='Swing Trading Nitin', shorttitle='SwingTradeNitin', overlay=true) //defaultTimeFrame = ((isintraday) ? "D" : ((isdaily) ? "W" : ((isweekly) ? "M" : "3M")...
Rolling VWAP Oscillator
https://www.tradingview.com/script/xP8ihbDe-Rolling-VWAP-Oscillator/
Daniel_Ge
https://www.tradingview.com/u/Daniel_Ge/
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/ // © TradingView - modified by Daniel_Ge // Creds to TradingView - I simply turned the existing indicator into a centered oscillator //@version=5 indicator("Rolling VWAP Oscillator", "RVWAP Oscillator", false)...
Volume Entropy
https://www.tradingview.com/script/SSjZSyYY-Volume-Entropy/
Uldisbebris
https://www.tradingview.com/u/Uldisbebris/
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/ // © Uldisbebris //@version=5 indicator("Volume Entropy", overlay = false, format=format.price, precision=2, timeframe="", timeframe_gaps=true) //Custom function for natural logarithm using Taylor Series natu...
Monthly Range Support & Resistance [QuantVue]
https://www.tradingview.com/script/zjwJ5WmI-Monthly-Range-Support-Resistance-QuantVue/
QuantVue
https://www.tradingview.com/u/QuantVue/
102
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("Monthly Range Support & Resistance [QuantVue]", overlay = true, max_labels_count = 500, max_lines_count = 500, max_boxes_count = 500) //----------------------------------...
Colored EMA
https://www.tradingview.com/script/E0Tx9siD-Colored-EMA/
Mateus_Rapini
https://www.tradingview.com/u/Mateus_Rapini/
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/ // © Mateus_Rapini //@version=5 indicator("Colored EMA", overlay = true) //Will draw an EMA with the specified length and with specific colors depending on //whether it's a bullish or bearish trend. // ––––...
Initial balance 3 Session
https://www.tradingview.com/script/2VmBhYxm-Initial-balance-3-Session/
Vanitati
https://www.tradingview.com/u/Vanitati/
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/ // © Vanitati //@version=5 indicator('Initial balance 3 Sessions with retests', shorttitle='Initial balance 3S', overlay=true) // ---- GLOBAL CONSTANTS AND VARIABLES ---- is_allowed_timeframe = timeframe.isint...
BDL Range Alert
https://www.tradingview.com/script/28HXt9Q5-BDL-Range-Alert/
The_Chart_Guru
https://www.tradingview.com/u/The_Chart_Guru/
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/ // © The_Chart_Guru // @version=5 indicator(title="BDL Range Alert", overlay=true) // User input bottomrangeBreakout = input.price(title="Set the Range Low", defval=0.0, confirm=true) toprangeBreakout = input....
Pivot Points [MisterMoTA]
https://www.tradingview.com/script/LEDYPCEi-Pivot-Points-MisterMoTA/
MisterMoTA
https://www.tradingview.com/u/MisterMoTA/
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/ // @author = MisterMoTA // © MisterMoTA //@version=5 indicator('Pivot points [MisterMoTA]', overlay = true) i_res = input.timeframe("D", "Choose the timeframe for pivots calculation", options=["1", "2...
Volume HeatMap With Profile [ChartPrime]
https://www.tradingview.com/script/fASgK4y1-Volume-HeatMap-With-Profile-ChartPrime/
ChartPrime
https://www.tradingview.com/u/ChartPrime/
402
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("Volume HeatMap With Profile [ChartPrime]",overlay = true,max_bars_back = 3000,max_boxes_count =500,max_lines_count = 500 ) string VISUAL ...
Cycles: 4x dual inputs: Swing / Time Cycles projected forward
https://www.tradingview.com/script/vag03r3a-Cycles-4x-dual-inputs-Swing-Time-Cycles-projected-forward/
twingall
https://www.tradingview.com/u/twingall/
70
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/ // © twingall //@version=5 indicator("Future cycles: 4x dual inputs", overlay = true, max_lines_count = 500) var grp1 = "~~~~~~~~~ Confuence Line ~~~~~~~~~" var grp2 = "~~~~~~~~~ Primary Cycle ~~~~~~~~~" var ...
W and M Pattern Indicator- SwaG
https://www.tradingview.com/script/lkB1fhGS-W-and-M-Pattern-Indicator-SwaG/
swagato25
https://www.tradingview.com/u/swagato25/
69
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/ // © swagato25 //@version=5 indicator("W and M Pattern Indicator- SwaG", overlay=true) //Inputs upper_limit = input.int(defval = 70, title = "Upper Limit") lower_limit = input.int(defval = 40, title = "Lower ...