You are on page 1of 2

8/10/23, 9:33 AM Multi indicators table by JuicY-trading — TradingView

Get started

Multi indicators table


JuicY-trading Updated Feb 25

Bitcoin / U.S. Dollar · 4h · BITSTAMP O24685.00 H25038.00 L24666.00 C24854.00 +179.00 (+0.73%)
Multi-Indicators-table Top right 3 14 20 close 14 14 close 9 21 50 200 10 14 close 14 14 close 30 20 hlc3 14

Oscillators Trend Analysis Volatility trading multiindicator indicators 7 258


volatilityindicator trendindicator trendreversal momentumindicator Cryptocurrency

Feb 19
This is a comprehensive trading tool that presents an overview of the market in a tabular format. It consists of five distinct
categories of trading indicators : Volatility, Trend, Momentum, Reversal, and Volume. Each category includes a series of
indicators that are widely used in the trading communauty.

The Volatility category includes the Average True Range (ATR) and Bollinger Bands indicators. The Trend category comprises
the Average Directional Index (ADX), four Exponential Moving Averages (EMAs), Aroon, Parabolic SAR, and the Supertrend. The
Momentum category includes the Stochastic Relative Strength Index (StochRSI), Money Flow Index (MFI), Williams %R, Relative
Strength Index (RSI), and Commodity Channel Index (CCI). The Reversal category includes Parabolic SAR, Moving Average
Convergence Divergence (MACD), and PP Supertrend. Finally, the Volume category includes the Volume Exponential Moving
Average (EMA) indicator.

The indicators states are easily readable, the indicator case is colored based on his actual state. A bullish color (green by
default), a bearish color (red by default),
a very bullish color (dark green by default), a very bearish color (dark red by default) and a neutral color (gray by default)
displayed when the indicator doesn't give us a clear signal. Some indicators do not have a very bullish or very bearish state.
Concerning volatility indicators, the bullish color indicates high volatility, the bearish color indicates low volatility, and the
neutral color indicates normal volatility.

Most of the indicators displayed in the table are customizable, and traders can choose to hide the categories they don't want
to use. The Indicator provides a quick and easily readable view on the market and allows traders to reduce the number of
indicators on their chart making it lighter and more readable.

Feb 25 Release Notes:


Little bug correction on the neutral color of the volume indicator

Open-source script

https://www.tradingview.com/script/EKlYtPwv/ 1/10
8/10/23, 9:33 AM Multi indicators table by JuicY-trading — TradingView
In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it
for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations
supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?

Add to favorite indicators

Multi indicators table Copy code

1 // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
2 // © JuicyWolf
3
4 //@version=5
5 indicator("Multi-Indicators-table", overlay = true)
6
7 //###############################################################################//
8 //############################### USER INPUTS ##############################//
9 //###############################################################################//
10 //############################### USER INPUTS ##############################//
11 //###############################################################################//
12 //############################### USER INPUTS ##############################//
13 //###############################################################################//
14 //############################### USER INPUTS ##############################//
15 //###############################################################################//
16 //############################### USER INPUTS ##############################//
17 //###############################################################################//
18 groupTable = "Table"
19
20 bullishColor = input.color(color.green, "bullish color", group="style")
21 x = 0.4
22 veryBullishColor = color.rgb(color.r(bullishColor)*x , color.g(bullishColor)*x, color.b(bullishColor)*x) // rend la couleur plus vive
23
24 bearishColor = input.color(color.red, "bearish color", group="style")
25
26 veryBearishColor = color.rgb(color.r(bearishColor)*x , color.g(bearishColor)*x, color.b(bearishColor)*x) // rend la couleur plus vive
27
28 neutralColor = input.color(color.gray, "neutral color", group="style")
29
30 displayTableVolatility = input.bool(true, "display volatility table", group="table parameters")
31 displayTableTrend = input.bool(true, "display trend table", group="table parameters")
32 displayTableMomentum = input.bool(true, "display momentum table", group="table parameters")
33 displayTableReversal = input.bool(true, "display reversal table", group="table parameters")
34 displayTableVolume = input.bool(true, "display volume table", group="table parameters")
35
36 tablePos = input.string("Top right", "Table position", options=["Top right", "Bottom right", "Bottom left", "Top left"], group="table parame
37 tableSize = input.int(2, "Table size", maxval=5, minval=1, group="table parameters")
38
39
40 // Volatility indicators //
41 //---------//
42 atrLength = input.int(14, "atr length", group="volatility indicators")
43
44 bbLength = input.int(20, "bollinger bands length", group="volatility indicators")
45 bbSource = input.source(close, "bollinger bands source")
46
47
48 // Trend indicators //
49 //---------//
50 lensig = input.int(14, title="ADX Smoothing", minval=1, maxval=50, group="trend indicators")
51 len = input.int(14, minval=1, title="DI Length", group="trend indicators")
52
53 emaSource = input.source(close, "ema source", group="trend indicators")
54 ema1Length = input.int(9, "ema 1 length", group="trend indicators")
55 ema2Length = input.int(21, "ema 2 length", group="trend indicators")
56 ema3Length = input.int(50, "ema 3 length", group="trend indicators")
57 ema4Length = input.int(200, "ema 4 length", group="trend indicators")
58
59 superTrendLength = input(10, "supertrend length", group="trend indicators")
60
61
62 // Momentum indicators //
63 //---------//
64 rsiLength = input.int(14, "rsi length", group="momentum indicators")
65 rsiSource = input source(close "rsi source" group="momentum indicators")
https://www.tradingview.com/script/EKlYtPwv/ 2/10

You might also like