IU Inside out candlestick patternIU Inside Out Candlestick Pattern
This indicator identifies the Inside Out Candlestick Pattern — a unique 3-bar price action setup that captures strong market momentum and potential reversals with greater reliability than traditional patterns.
Pattern Logic:
The Inside Out pattern builds upon a classic engulfing setup by adding a breakout confirmation, making it a refined and filtered approach to candlestick analysis.
Bullish Inside Out Logic:
- Bar must be a bullish engulfing candle (engulfs previous bearish candle).
- Current bar must be bullish and must close above the high of the engulfing candle (a bullish breakout).
- When this setup is confirmed, a shaded green box is drawn around the range of the engulfing candle and its preceding bar.
Bearish Inside Out Logic:
- Bar must be a bearish engulfing candle (engulfs previous bullish candle).
- Current bar must be bearish and must close below the low of the engulfing candle (a bearish breakdown).
- When confirmed, a red box highlights the zone formed by the engulfing candle and its prior bar.
Why this is unique:
Unlike conventional candlestick indicators that trigger signals immediately after an engulfing pattern, this script adds a breakout condition to validate follow-through strength. This reduces false positives and gives traders a clearer edge. The pattern is also rare, which means it captures strong, decisive moves when it does appear.
How users can benefit:
- High-quality entries: Only shows patterns with proven follow-through, improving trade timing.
- Visual clarity: Boxes and labels highlight significant price zones for easy interpretation.
- Flexible use: Applicable across timeframes and instruments — ideal for both intraday and swing traders.
- Alerts included: Real-time alerts help traders stay updated without staring at charts all day.
This script is a powerful tool for price action traders looking to enhance pattern reliability and signal strength through structure-based breakout confirmation.
Forecasting
ConeCastConeCast is a forward-looking projection indicator that visualizes a future price range (or "cone") based on recent trend momentum and adaptive volatility. Unlike lagging bands or reactive channels, this tool plots a predictive zone 3–50 bars ahead, allowing traders to anticipate potential price behavior rather than merely react to it.
How It Works
The core of ConeCast is a dynamic trend-slope engine derived from a Linear Regression line fitted over a user-defined lookback window. The slope of this trend is projected forward, and the cone’s width adapts based on real-time market volatility. In calm markets, the cone is narrow and focused. In volatile regimes, it expands proportionally, using an ATR-based % of price to scale.
Key Features
📈 Predictive Cone Zone: Visualizes a forward range using trend slope × volatility width.
🔄 Auto-Adaptive Volatility Scaling: Expands or contracts based on market quiet/chaotic states.
📊 Regime Detection: Identifies Bull, Bear, or Neutral states using a tunable slope threshold.
🧭 Multi-Timeframe Compatible: Slope and volatility can be calculated from higher timeframes.
🔔 Smart Alerts: Detects price entering the cone, and signals trend regime changes in real time.
🖼️ Clean Visual Output: Optionally includes outer cones, trend-trail marker, and dashboard label.
How to Use It
Use on 15m–4H charts for best forward visibility.
Look for price entering the cone as a potential trend continuation setup.
Monitor regime changes and volatility expansion to filter choppy market zones.
Tune the slope sensitivity and ATR multiplier to match your symbol's behavior.
Use outer cones to anticipate aggressive swings and wick traps.
What Makes It Unique
ConeCast doesn’t follow price — it predicts a possible future price envelope using trend + volatility math, without relying on lagging indicators or repainting logic. It's a hybrid of regression-based forecasting and dynamic risk zoning, designed for swing traders, scalpers, and algo developers alike.
Limitations
ConeCast projects based on current trend and volatility — it does not "know" future price. Like all projection tools, accuracy depends on trend persistence and market conditions. Use this in combination with confirmation signals and risk management.
Intraday S/R Breaks (Clean)//@version=5
indicator("Intraday S/R Breaks (Clean)", overlay=true)
length = input.int(6, title="Volume MA Period")
showLines = input.bool(true, title="Show S/R Lines?")
showZones = input.bool(false, title="Show Zones?")
// Volume logic
volMA = ta.sma(volume, length)
// Fractal logic (basic 5-bar high/low with volume filter)
isFractalUp = high > high and high > high and high > high and high > high and volume > volMA
isFractalDown = low < low and low < low and low < low and low < low and volume > volMA
var float resistance = na
var float support = na
if isFractalUp
resistance := high
if isFractalDown
support := low
// Plot lines/zones
resLine = showLines and not na(resistance) ? line.new(x1=bar_index , y1=resistance, x2=bar_index, y2=resistance, extend=extend.right, color=color.red, width=1) : na
supLine = showLines and not na(support) ? line.new(x1=bar_index , y1=support, x2=bar_index, y2=support, extend=extend.right, color=color.green, width=1) : na
// Alerts
resBreak = ta.crossover(close, resistance)
supBreak = ta.crossunder(close, support)
alertcondition(resBreak, title="Resistance Break", message="Resistance Break!")
alertcondition(supBreak, title="Support Break", message="Support Break!")
if resBreak
label.new(bar_index, high, "📈 RESISTANCE BROKEN", style=label.style_label_down, color=color.red, textcolor=color.white)
if supBreak
label.new(bar_index, low, "📉 SUPPORT BROKEN", style=label.style_label_up, color=color.green, textcolor=color.white)
Volume fightThe Volume fight indicator looks for the predominance of bullish or bearish trading volume on the chart by dividing the trading volume in the bar into 2 parts - "bullish volume" and "bearish volume", and comparing the weighted average values by volume with each other at a given distance.
This indicator is suitable for any instrument (cryptocurrency, Forex, stocks) and is able to work on any TF.
The Volume fight indicator should be used as an auxiliary indicator that tells you who is currently prevailing in the market - " bulls "or"bears".
To configure the indicator, it is necessary to set the range of evaluation of the predominance of bullish or bearish volume (the number of bars, by default-24 bars for TF=1H). The smaller the TF, the higher the range value should be used to filter out false signals.
When there is a predominance of "bulls" on the chart, a green triangle appears (relevant at the close of the bar) and the histogram is highlighted in green, when "bears" appear on the chart, a red triangle appears (relevant at the close of the bar) and the histogram is highlighted in red.
In the indicator settings, there is smoothing to reduce false signals and highlight the flat zone by specifying a percentage, at least which should be the difference between the forces of the "bullish" and "bearish" volume. If the difference between the volume forces is less than the specified one (by default-15%), the zone is considered flat and is displayed in gray on the histogram.
If you set the percentage to zero, the flat zones will not be highlighted, but there will be much more false signals, since the indicator becomes very sensitive when the smoothing percentage decreases.
There is a function-to show the color background of the current trading zone. For" bullish "- green, for" bearish " - red.
In the settings, you can enable the display and use of each signal in the trading zone, not only the initial one, but also each after the flat zone. By default, only the signal of the beginning of the ascending/descending zone is used.
The indicator has alerts for "bullish" and "bearish" movements. Use alerts - "Once per bar close".
If you have any questions, you can write to me in private messages or by using the contacts in my signature.
We are publishing this script anew, it is included in the review of the best 3 scripts for filtering false signals.
youtu.be
----------------------------------------------------
Индикатор Volume fight ищет на графике преобладание бычьего или медвежьего объёма торгов путём разделения торгового объёма в баре на 2 части - "бычий объём" и "медвежий объём", и сравнения средне-взвешенных значений по объёму между собой на заданной дистанции.
Данный индикатор подходит для любого инструмента (криптовалюта, Forex, акции) и способен работать на любом ТФ.
Индикатор Volume fight следует использовать как вспомогательный индикатор, который подсказывает Вам кто сейчас преобладает на рынке - "быки" или "медведи".
Для настройки индикатора необходимо выставить диапазон оценки преобладания бычьего или медвежьего объема (количество баров, по умолчанию - 24 бара для ТФ=1Ч). Чем меньше ТФ, тем выше следует использовать значение диапазона, чтобы отфильтровать ложные сигналы.
При возникновении преобладания на графике "быков" появляется зелёный треугольник (актуален по закрытию бара) и гистограмма подсвечивается зелёным цветом, при возникновении на графике "медведей" появляется красный треугольник (актуален по закрытию бара) и гистограмма подсвечивается красным цветом.
В настройках индикатора есть сглаживание для уменьшения ложных сигналов и выделения зоны флета с помощью указания процента, не менее которого, должна быть разница между силами "бычьего" и "медвежьего" объёма. Если разница между силами объёмов меньше заданного (по умолчанию - 15%), то зона считается флетовой и отображается на гистограмме серым цветом.
Если выставить процент равным нулю, то зоны флета выделяться не будут, но будет гораздо больше ложных сигналов, так как индикатор становится очень чувствительным при снижении процента сглаживания.
Есть функция - показывать цветовой фон текущей торговой зоны. Для "бычьего" - зелёный, для "медвежьего" - красный.
В настройках можно включить отображение и использование каждого сигнал в торговой зоне, не только начального, но и каждого после зоны флета. По умолчанию - только сигнал начала восходящей/нисходящей зоны.
Индикатор имеет оповещения для "бычьего" и "медвежьего" движения. Используйте оповещения - "на закрытии бара".
Этот скрипт мы публикуем заново, он вошел в обзор лучших 3-х скриптов для фильтрации ложных сигналов.
youtu.be
BLCKBOX StochasticAnother dirty indicator that is based on the Trading View Stochtastic indicator with the addition of directional arrow indicators that show the anticipated price direction (up/down).
I have released several indicators that can be used in conjunction to hopefully improve your chances of making a ton of money!
BLCKBOX indicators include;
BLCKBOX Buying / Selling Sentiment
BLCKBOX MACD Indicator
BLCKBOX Relative Strength Index
BLCKBOX Crypto Bear Market Prediction
BLCKBOX Stochtastic
If you find this or any other indicator useful and wish to show your gratitude, you may!
Doge
DJwW7XazGk2R8nXjt8y5ydQfGKYSz3XV3h
Litecoin
ltc1qh8t4dmz8sugjcd5unn0g49985u0tz5gs6kf98y
Bitcoin
bc1q0deh9t9w9tm3qgd3npn7965rzel35qumez7m5v
Ethereum
0xa23a7bbde03ea31f5cce4b115c8ef1ea8bc9f467
Pepe
Pr7DZSXKwVGv7LYhRQ9oSuuWxUecc3Dvwq
SPY Current Price (Customizable)This indicator will show the current SPY pricing on any chart you're on so you don't have to bounce back and forth between charts and wonder where it currently is.
EMA 20/50simple EMA, that's all I need. only 20 and 50 EMA, very easy to understand the trend. also fit better with my strategy, I trade 15mins+ TH.
CK Trader Pro session high lowCK Session Tracker – Global Market Session Levels
The CK Session Tracker is a precision-built TradingView indicator designed to map out the most critical times in the market — the Asia, EU, and US sessions. This tool automatically plots the open, close, high, and low of each major session, giving traders a crystal-clear view of market structure, key liquidity zones, and session-based momentum shifts.
🔍 Features:
🕒 Automatic Session Markers – Visualize the exact open and close times of Asia, Europe, and US sessions directly on your chart.
📈 Session Highs & Lows – Instantly spot where price reacted during each session, helping identify breakouts, reversals, or liquidity grabs.
🌐 Global Market Awareness – Designed to adapt to futures, forex, and crypto across all time zones.
🎯 Smart Trading Zones – Use session data to pinpoint high-probability setups during overlaps or session handoffs.
Perfect for intraday traders, ICT strategy followers, and anyone focused on session-based movement. The CK Session Tracker gives you the edge of institutional timing — all on one chart.
BLCKBOX Crypto Bear Market PredicationMy First Indicator!
This indicator was developed in an attempt to predict a crypto bear market and global recession. It's a really simple plugin-in that reads GDP information from major countries, plots them in a chart and calculates the lowest values month on month. When a -1 is detected in the chart a red indicator is displayed on the indicator at the bottom of the window warning of a potential future downward trend for crypto markets.
Let me know how you get on. The indicator doesn't work with normal stock markets but there does seem to be a correlation with crypto markets.
Scalping Template - XAUUSD//@version=5
indicator("Scalping Template - XAUUSD", overlay=true)
// EMA
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
plot(ema50, color=color.blue, title="EMA 50")
plot(ema200, color=color.orange, title="EMA 200")
// QQE Mod Histogram (simplified)
src = close
rsi = ta.rsi(src, 14)
rsiEma = ta.ema(rsi, 5)
hist = rsi - rsiEma
plot(hist, title="QQE Histogram", color=hist >= 0 ? color.aqua : color.fuchsia, style=plot.style_columns, linewidth=2)
// Stochastic RSI
k = ta.stoch(close, high, low, 14)
d = ta.sma(k, 3)
plot(k, title="Stoch %K", color=color.green)
plot(d, title="Stoch %D", color=color.red)
hline(80, "Overbought", color=color.gray)
hline(20, "Oversold", color=color.gray)
seekho roj kamao v 2 "Our Supply and Demand Zone Indicator is a powerful tool designed to pinpoint key institutional price levels with accuracy. It automatically detects and highlights significant supply (resistance) and demand (support) zones based on historical price action, helping traders identify potential reversal and breakout areas. The zones adapt dynamically to market structure, providing real-time visual cues for strategic entries, exits, and risk management. Whether you're trading forex, stocks, or crypto, this indicator helps you stay ahead of the market by revealing hidden price imbalances and enhancing your ability to make informed, confident trading decisions."
Hull Trend Strong ConfirmationHull Trend original adapted: Added Strong Confirmation. Original code: jaggesoft
Global Net Liquidity - OffsetThis is a global net liquidity indicator with a built-in offset, allowing you to adjust by a specific number of days.
A lot of people believe that Global Net Liquidity operates at a 10-12 week lag, so being able to offset it helps to visualise the impact of liquidity on markets.
First Hour TrendThis indicator analyzes the first hour of trading to determine if the market is showing bullish, bearish, or neutral momentum. By default, it's configured for regular US market hours (9:30-10:30 AM ET), but can be customized for any market session. It's based on the "Opening Candle Continuation" strategy, which has shown strong predictive power for daily market direction based on first hour performance.
Session High - LowHighs and Lows of each session. Shows the highs for each session with lines throughout the day.
15m ATR Target (Long-Only)15m ATR Target (Long-Only) Indicator
Overview
This custom indicator combines two powerful intraday tools into one clean overlay:
10-Minute Opening Range Breakout (ORB) – Yellow dashed lines marking the high and low of the first 10 minutes after your chosen session start.
15-Minute ATR Target – A green dotted line set at (15-min block close + ATR), recalculated and redrawn every 15 minutes.
Together, they give you both a classic ORB framework and a volatility-based price target for long entries.
How It Works
1. Define Your Session Start
You choose the clock time (e.g. 9:30 AM). From that moment:
For the next 10 minutes, the indicator records the highest high and lowest low.
2. Draw the 10-Minute ORB Lines
As soon as those 10 minutes pass, two yellow dashed horizontal lines appear at the OR high and low, extending right across your chart. These mark your key breakout levels.
3. Split the Day into 15-Minute Blocks
Independently, the day is also broken into fixed 15-minute intervals (e.g. 9:00–9:15, 9:15–9:30, etc.).
4. Measure ATR in Each Block
For each 15-min window, the script calculates the Average True Range over that block’s bars—a gauge of how much price typically moves within 15 minutes.
5. Capture Each Block’s Close
When the clock ticks past each 15-min boundary, the script notes that block’s closing price.
6. Plot the ATR-Based Target
Immediately after each 15-min block, a green dotted line is drawn at (block close + ATR). This line extends forward a set number of bars, giving you a dynamic upper-target level for long trades.
7. Auto-Refresh & Alerts
Both the ORB lines and ATR target update automatically:
8. The ORB lines appear once at the 10-min mark and persist all day.
The ATR target line deletes and redraws every 15 minutes, so you’re always seeing the latest volatility-adjusted target. You can also enable an alert to ping you the moment price crosses above the ATR target.
Why Use It?
Opening Range Clarity: The 10-min ORB is a widely used breakout setup; these yellow lines give you clear entry and stop levels.
Volatility-Adaptive Targets: The ATR-based green line adjusts to current market chop or calm, so your profit targets stay relevant.
Long-Only Focus: Everything is designed around catching upside breakouts—ideal for bulls and momentum traders.
Fully Automated: No manual drawing or recalculation—just add it and trade its levels.
Ideal For:
Intraday traders looking for volatility-based, long-only entry targets incorporating an ORB strategy.
Anyone who wants an objective way to gauge whether price has moved “beyond normal” and is ready to run further.
Volatility-Adaptive Targets: The ATR-based green line adjusts to current market chop or calm, so your profit targets stay relevant.
Long-Only Focus: Everything is designed around catching upside breakouts—ideal for bulls and momentum traders.
Fully Automated: No manual drawing or recalculation—just add it and trade its levels.
Add the 15m ATR Target to your chart today and start spotting volatility-backed, long-only opportunities with confidence!
Price for 1 Gold Baht ราคา ทองคำ หนึ่งบาท📘 Indicator Description
🔧 English Version
Name: Price for 1 Gold Baht – ราคา ทองคำ หนึ่งบาท
Short title: 1 Baht Gold (THB)
Purpose:
This indicator calculates and visualizes the real-time price of 1 Thai Gold Baht (15.244 grams) based on the global gold price (XAU/USD) and the USD/THB exchange rate. It allows users to simulate the domestic Thai gold price with customizable inputs for gold weight and purity.
What it does:
Retrieves live gold price per troy ounce in USD (XAU/USD) Retrieves the current USD to Thai Baht exchange rate (USD/THB)
Converts the value into Thai Baht using:
User-defined weight in grams (default: 15.244 g)
User-defined purity in % (default: 96.5% for standard Thai gold)
Displays the result as a real-time chart line
Adds reference values to the Data Window for detailed tracking
Ideal for:
Traders who want to monitor local Thai gold price movements in global markets Analysts comparing spot gold to domestic bullion prices Anyone needing a precise, configurable conversion of international gold data into local Thai currency
📘 คำอธิบายอินดิเคเตอร์
🔧 ภาษาไทย
ชื่อ: ราคา ทองคำ หนึ่งบาท – Price for 1 Gold Baht
ชื่อย่อ: 1 Baht Gold (THB)
วัตถุประสงค์:
อินดิเคเตอร์นี้ออกแบบมาเพื่อแสดงราคาทองคำไทย 1 บาท (น้ำหนัก 15.244 กรัม) แบบเรียลไทม์ โดยใช้ราคาทองคำสากล (XAU/USD) และอัตราแลกเปลี่ยน USD/THB พร้อมทั้งให้ผู้ใช้สามารถปรับแต่งค่าน้ำหนักและความบริสุทธิ์ของทองได้ตามต้องการ
สิ่งที่อินดิเคเตอร์นี้ทำ:
ดึงราคาทองคำต่อทรอยออนซ์ในรูปแบบ USD (XAU/USD) แบบเรียลไทม์
ดึงอัตราแลกเปลี่ยน USD → บาท (USD/THB)
คำนวณราคาทองคำไทยโดยใช้: - น้ำหนักทองที่กำหนดโดยผู้ใช้ (ค่าเริ่มต้น 15.244 กรัม) - ความบริสุทธิ์ของทองที่กำหนดได้ (ค่าเริ่มต้น 96.5% สำหรับทองไทย) แสดงผลราคาทองคำ 1 บาทในรูปแบบกราฟเส้น แสดงข้อมูลเสริมใน Data Window เช่น ราคาทองสากล อัตราแลกเปลี่ยน และข้อมูลการคำนวณ
เหมาะสำหรับ:
นักเทรดที่ต้องการติดตามราคาทองคำไทยจากความเคลื่อนไหวในตลาดโลก
นักวิเคราะห์ที่เปรียบเทียบราคาทองคำ Spot กับราคาทองคำภายในประเทศ
ผู้ใช้งานที่ต้องการแปลงข้อมูลทองคำระหว่างประเทศให้เป็นราคาท้องถิ่นอย่างแม่นยำ
💡 Tip:
To use this script: Add it to any chart Customize gold weight or purity (if needed) Observe how international gold price movements translate to Thai domestic gold prices
Global Liquidity IndexThis indicator tracks worldwide liquidity by aggregating the sum of the global M2 money supply, and major central bank balance sheets and subtracting the U.S. Treasury General Account (TGA), the Federal Reserve’s Reverse Repo (RRP) facility. It offers insight into the overall liquidity environment, often a key driver of risk asset performance.
Returns by Market SessionThe indicator displays the trading sessions of New York, London, and Asia, along with a Misc option for any other desired timeframe. There is also a returns table that shows the returns by session of the previous 7-day, 14-day, and 28-day periods.
DECODE M2 Global Liquidity IndexThe most comprehensive M2 indicator on Trading View.
- Custom lead setting (days)
- Data sources for the 20 largest economies
- Only selected sources are loaded for efficiency
- Automatic multi-timeframe recalculation
EMA200 Golden/Death Cross Gradient // (\_/)
// ( •.•)
// (")_(")
EMA200 Golden/Death Cross Gradient
A Pine Script v6 overlay that highlights trend-change signals with a volatility-based color gradient.
*Moving Averages
*Short EMA (default 50 periods) in bright yellow
*Long EMA (default 200 periods) in vivid red
*Cross Detection
*Golden Cross: when the short EMA crosses above the long EMA → signals bullish shift
*Death Cross: when the short EMA crosses below the long EMA → signals bearish shift
Volatility Filter
*Uses ATR (default 14) to gauge current market volatility
*User-set Min/Max Volatility thresholds map ATR values onto a color gradient
Dynamic Background
*On a Golden Cross, the background glows with a semi-transparent gold gradient, growing more intense as volatility increases
*On a Death Cross, the background glows with a semi-transparent red gradient, likewise scaling with volatility
*No background fill when no cross is active
Customizable Inputs
*Short/Long EMA periods
*ATR length
*Minimum & maximum ATR values for gradient scaling
Day Range DividerThe indicator divides the chart into Israeli trading days, starting at one o’clock after midnight and ending a minute before the next midnight, marking each day’s open with a thin vertical line whose color and width you can choose. A label with the day’s name (in Hebrew) can appear on the very first bar of the session, while another label is placed midway through the previous day, beneath the candles at a fixed distance from the bottom so it doesn’t obscure price. You can adjust the label’s color, size, and letter spacing, customize the line style, and decide whether to show the early-session label. The indicator ignores Saturday and Sunday, works on any intraday timeframe, never repaints after plotting, and lets you quickly spot daily sequences and time-of-day patterns for market analysis.
Global M2 Money Supply Top20 + Offset & WaveThe M2 Top20 is a global aggregation of the M2 money supply from the 20 largest economies in the world , providing a comprehensive view of the total liquidity in the global financial system. It is expressed in trillions of USD.
This script calculates and visualizes the M2 Money Supply of the Top 20 Global Economies, adjusted to various timeframes (4H, 1D, 1W, 1M) with customizable offset adjustments (in days) from -1000 days to +1000 days. This indicator includes data from the Americas, Europe, Africa, and the Asia Middle East , offering a diverse and balanced representation of major economic regions. The M2 of each country has been converted to USD.
Additionally, the user can set a minimum and maximum offset to create a wave around the main offset and expand the comparison.
Combining these options, this indicator enables users to visualize a range of the global money supply, making it useful for market analysis, economic forecasting, and understanding macroeconomic trends. This indicator is particularly valuable for traders and analysts interested in understanding the dynamics of global monetary systems and their potential impact on financial markets.
Key Features:
Global M2 Money Supply calculation from the Top 20 Economies.
Adjustable Offset: Adjust the offset to align the indicator with the best bar. Adjustment in days, usable on different timeframes (1D, 1W, 4H, 1M).
Wave Projection: Displays a "probability cloud"—a smoothed area that shows the probable path of Bitcoin, derived from shifts in global liquidity.
Min/Max Offset Adjustments: Customizable offsets allow you to determine the range of future windows, helping to shape the wave and better identify liquidity-driven turning points.
Use Cases:
Economic Forecasting: Identify trends in global money supply and their potential market impact (e.g., historically leads Bitcoin price by +/- 78 days to +/-108 days).
Market Analysis: Track the growth or contraction of money supply across key economies.
Macro-Economic Analysis: Understand the relationship between monetary policies and market performance.
How to use:
Add the indicator to your chart.
Set the timeframe to 1D to customize the offset.
Set the Offset (in days).
Set the Offset Range Minimum and Maximum.
Show/Hide the Range Wave
.
Use offset = 0 to have the indicator align directly with the current data, without any shift, providing a baseline for comparison with the most recent market conditions.
Countries included in the M2 Top20:
China (CN), Japan (JP), South Korea (KR), Hong Kong (HK), Taiwan (TW), India (IN), Saudi Arabia (SA), Thailand (TH), Vietnam (VN), United Arab Emirates (AE), Malawi (MW) – Africa, United States (US), Canada (CA), Brazil (BR), Mexico (MX), Eurozone (EU), United Kingdom (GB), Russia (RU), Poland (PL), Switzerland (CH).
These countries were selected from the ranking of the World Economy Indicator of Trading View .