Triple Moving Averages & BBTriple SMAs (default 50 100 200) that turn green when trending up and red when trending down.
Includes standard bollinger bands which can be turned off.
Combines these 4 indicators into just 1.
Bollinger Bantları (BB)
Tangram Bot 2 - SmartbotPrimeira Versão do Script Tangram Bot 2 da Smartbot para tradingview.
A intenção é agilizar e fazer um teste prévio e rápido do setup.
O resultado indicado aqui jamais corresponderá a um resultado real. É apenas uma ferramenta de estudo.
Ainda falta fazer e melhorar a parte de gestão de risco.
Caso queria fazer alguma sugestão ao cógido para melhorar a gestão de risco ou caso tenha encontrado algum erro, favor comunicar.
O tangram bot 2 combina o uso de até dez Indicadores de Análise Técnica com Gerenciamento de Risco (stop gain, stop loss, stop móvel, realização parcial, bloqueio de reversões, lucro máximo por dia e prejuízo máximo por dia) e Filtros Diversos (sentido das operações, uso do after-market, bloqueio de nova entrada após saída, hora inicial e hora final para negociação). São utilizados os indicadores Médias Móveis, HiLo Activator, MACD, ADX, Estocástico, VWAP, IFR, Bandas de Bollinger, Stop ATR e SAR Parabólico
Multi SMA EMA WMA HMA BB (4x5 MAs Bollinger Bands) Adv MTF - RRBMulti SMA EMA WMA HMA 4x5 Moving Averages with Bollinger Bands Advanced MTF by RagingRocketBull 2019
Version 1.0
This indicator shows multiple MAs of any type SMA EMA WMA HMA etc with BB and MTF support, can show MAs as dynamically moving levels.
There are 4 MA groups + 1 BB group, a total of 4 TFs * 5 MAs = 20 MAs. You can assign any type/timeframe combo to a group, for example:
- EMAs 12,26,50,100,200 x H1, H4, D1, W1 (4 TFs x 5 MAs x 1 type)
- EMAs 8,10,13,21,30,50,55,100,200,400 x M15, H1 (2 TFs x 10 MAs x 1 type)
- D1 EMAs and SMAs 8,10,12,26,30,50,55,100,200,400 (1 TF x 10 MAs x 2 types)
- H1 WMAs 7,77,89,167,231; H4 HMAs 12,26,50,100,200; D1 EMAs 89,144,169,233,377; W1 SMAs 12,26,50,100,200 (4 TFs x 5 MAs x 4 types)
- +1 extra MA type/timeframe for BB
There are several versions: Simple, MTF, Pro MTF, Advanced MTF and Ultimate MTF. This is the Advanced MTF version. The Differences are listed below. All versions have BB
- Simple: you have 2 groups of MAs that can be assigned any type (5+5)
- MTF: +2 custom Timeframes for each group (2x5 MTF) +1 TF for BB, TF XY smoothing
- Pro MTF: 4 custom Timeframes for each group (4x3 MTF), 1 TF for BB, MA levels and show max bars back options
- Advanced MTF: +2 extra MAs/group (4x5 MTF), custom Ticker/Symbols, Timeframe <>= filter, Remove Duplicates Option
- Ultimate MTF: +individual settings for each MA, custom Ticker/Symbols
Features:
- 4x5 = 20 MAs of any type
- 4x MTF groups with XY step line smoothing
- +1 extra TF/type for BB MAs
- 4x5 = 20 MA levels with adjustable group offsets, indents and shift
- supports any existing type of MA: SMA, EMA, WMA, Hull Moving Average (HMA)
- custom tickers/symbols for each group - you can compare MAs of the same symbol across exchanges
- show max bars back option
- show/hide both groups of MAs/levels/BB and individual MAs
- timeframe filter: show only MAs/Levels with TFs <>= Current TF
- hide MAs/Levels with duplicate TFs
- support for custom TFs that are not available in free accounts: 2D, 3D etc
- support for timeframes in H: H, 2H, 4H etc
Notes:
- Uses timeframe textbox instead of input resolution dropdown to allow for 240 120 and other custom TFs
- Uses symbol textbox instead of input symbol to avoid establishing multiple dummy security connections to the current ticker - otherwise empty symbols will prevent script from running
- Possible reasons for missing MAs on a chart:
- there may not be enough bars in history to start plotting it. For example, W1 EMA200 needs at least 200 bars on a weekly chart.
- price << default Y smoothing step 5. For charts with low/fractional prices (i.e. 0.00002 << 5) adjust X Y smoothing as needed (set Y = 0.0000001) or disable it completely (set X,Y to 0,0)
- TradingView Replay Mode UI and Pinescript security calls are limited to TFs >= D (D,2D,W,MN...) for free accounts
- attempting to plot any TF < D1 in Replay Mode will only result in straight lines, but all TFs will work properly in history and real-time modes. This is not a bug.
- Max Bars Back (num_bars) is limited to 5000 for free accounts (10000 for paid), will show error when exceeded. To plot on all available history set to 0 (default)
- Slow load/redraw times. This indicator becomes slower, its UI less responsive when:
- Pinescript Node.js graphics library is too slow and inefficient at plotting bars/objects in a browser window. Code optimization doesn't help much - the graphics engine is the main reason for general slowness.
- the chart has a long history (10000+ bars) in a browser's cache (you have scrolled back a couple of screens in a max zoom mode).
- Reload the page/Load a fresh chart and then apply the indicator or
- Switch to another Timeframe (old TF history will still remain in cache and that TF will be slow)
- in max possible zoom mode around 4500 bars can fit on 1 screen - this also slows down responsiveness. Reset Zoom level
- initial load and redraw times after a param change in UI also depend on TF. For example:
D1/W1 - 2 sec, H1/H4 - 5-6 sec, M30 - 10 sec, M15/M5 - 4 sec, M1 - 5 sec.
M30 usually has the longest history (up to 16000 bars) and W1 - the shortest (1000 bars).
- when indicator uses more MAs (plots) and timeframes it will redraw slower. Seems that up to 5 Timeframes is acceptable, but 6+ Timeframes can become very slow.
- show_last=last_bars plot limit doesn't affect load/redraw times, so it was removed from MA plot
- Max Bars Back (num_bars) default/custom set UI value doesn't seem to affect load/redraw times
- In max zoom mode all dynamic levels disappear (they behave like text)
1. based on 3EmaBB, uses plot*, barssince and security functions
2. you can't set certain constants from input due to Pinescript limitations - change the code as needed, recompile and use as a private version
3. Levels = trackprice implementation
4. Show Max Bars Back = show_last implementation
5. swma has a fixed length = 4, alma and linreg have additional offset and smoothing params
6. Smoothing is applied by default for visual aesthetics on MTF. To use exact ma mtf values (lines with stair stepping) - disable it
Good Luck! You can explore, modify/reuse the code to build your own indicators.
Contrarian Scalping Entry Support// @version=3
// Copyright @ ALEX SHORT
// Indicator Name : Contralian Scalping Entry Support
// alpha tester : Norakichi senpai (PRO TRADER)
// alpha tester : SHINNchan (Prop TRADER)
// Special Thanks WBZ Trading Group
// This indicator support "Contralian Scalping Entry" and "Find ideal Take-Profit point that just like Buying or Selling CLIMAX".
// Attension!!! I strongly reccomend to Verify effectiveness before "REAL TRADE".
// Note1. Downtrend often continue compared to uptrend. So, you might have to change DFMA setting for it. Or you should change reasons/grounds for Scalping Long Entry in long DownTrend.
// Note2. Before applying this indicator or switching resolution, please confirm DFMA resolution Setting. It can't chenge automatically.
// Function1. Difference from Moving Average Arrow from Multi_SMA
// This indicator will plot chart Arrow above or below candle stick when DFMA marked over range.
//
// Function2. When candle touch Quad_Bollinger band, background color will change.
// Function3.
// New Version is "v2.7.1"
1. You can switch Scalping / Swing Mode using by the checkbox. Each DFMA_#1 and #2 can apply different Alert Level.
2. QBB_Circle Alert displaying moved bottom in the main chart.
Bollinger Bands Trading SignalsFeatures:
Trading signals based on Bollinger Bands trading strategy.
Powerful filter algorithm helps you avoid counter trade in trending market.
Getting Started:
Replace your Bollinger Bands indicator with this one.
You can see the trading signals and bands at the same time.
Contributing:
You can report bugs or issues under this page.
Any advice would be helpful for improving this indicator's accuracy.
Application:
This is an invite-only indicator.
BB Over Bought / Sold MTF// Enter a long position or exit a short position when all bands concentrate below 0.15 in lime color.
// Exit a long position or enter a short position when all bands concentrate above 0.9 in fuchsia color.
berman idicatorScript do indicaor Berman
Entradas Sempre para a expiraçao da vela de M5 quando O indicador mostra Um X No candle
yutas_BOindicator2Ver .1.0
High-low sign indicator for binary option only.
バイナリーオプション専用ハイローサインインジケーター。
Ulysses Indicator by ZekisThis script is based on multiple indicators:
- Stochastic Momentum Index
- Anchored Momentum
- Bollinger Bands
- Stochastic RSI
- EMA
When all criterias are met, a signal is triggered:
- green label - the trend is change to bullish (teal background)
- red label - the trend is change to bearish (red background)
- green triangle - enter long (lime bar color)
- red triangle - enter short (red bar color)
This strategy works with med-high time frames.
Play with values till you find what you need.
Enjoy!
@Zekis
Multi-TimeFrame Bollinger BandsMulti-timeframe bollinger band
This script generates higher timeframe bollinger band in a lower timeframe chart, which can be used to find better reference of entry and exit.
PVT + BB + Período Personalizado com cores RDNEste Script é personalizado. É um PVT com bandas de Bollinger que muda de cores os candles no gráfico e também a linha do PVT
Sugestões e maiores informações de uso adicione @rafdourado
3xBB multi flex TF4 independent 3x Bollinger Bands
each of them hast the following parameterset (user inputs):
- Show/enable true/false: to de-/activate the 3xBB
- 3 diff Multiplier (set some of them to same values or disable some in style-menu to get a better overview)
- Length
- Source
- Timeframe/Resolution: "5","15","30","60", "240","360","720", "1D", "1W", "1M", "Chart"
To use the native chart time resolution select "Chart" as TimeFrame
Without any guarantee / warranty!
Please report bugs in comment section.
MTF BB Meow Mix [acatwithcharts]This script adds multi-timeframe support to full BB Meow Mix, with the full set of various moving average and stdev calculation types.
There is a tradeoff in that there is, to the best of my knowledge, no way to support both MTF and the default band settings menu in the same script, because the security() function in Pinescipt doesn't support variable lookback lengths and trying to plot everything independently instead maxes out the number of plots allowed per script. So, this version of the script doesn't include a menu of defaults.
My volatility indicators are available by subscription in several packages through SharkCharts.live.
Current pricing and subscription details will be kept up-to-date on SharkCharts.live
MTF BB Meow Mix (Lite) [acatwithcharts]This script adds multi-timeframe support to BB Meow Mix (Lite).
There is a tradeoff in that there is, to the best of my knowledge, no way to support both MTF and the default band settings menu in the same script, because the security() function in Pinescipt doesn't support variable lookback lengths and trying to plot everything independently instead maxes out the number of plots allowed per script. So, this version of the script doesn't include a menu of defaults.
My volatility indicators are available by subscription in several packages through SharkCharts.live.
Current pricing and subscription details will be kept up-to-date on SharkCharts.live
Moving Averages & Bollinger Bands3 Moving Averages and Bollinger Bands in 1 Indicator
SMA or EMA
Exponential Bollinger Bands available
Turn bands on or off
Customize period length and standard deviations
4 Ichimoku Clouds 2 BB by Theo ParkYou can use 4 Ichimoku Clouds and 2 Bollinger Bands with this indicator
Bollinger ratioSo this indicator is hybrid of MACD and Bollinger
The aim here is to see where the direction of the Bollinger is going to the zero up or down . if it above the zero line or bellow it
I add bullish area and bearish area by the ratio of donchian channel
TJ-BandsDo you want to know
This indicator is a modified form of Bollinger Bands.
It works in a similar way like BB does. If you take a look at the "line" chart, you will clearly see, that a close outside these bands is very unlikely and works very well as a rejection line for the chart.
Since, the chart is likely to get rejected at the bands those have been indicated red at the top and green at the bottom.
The use is very simple, add it to your chart and there is nothing more to modify or change.
Like and Follow me and you will find this page interesting because I am a TA expert and professional day trader in crypto since 2012 that does daily updates and new posts about the hottest and most discussed coins.
Cheers, TJ
DMIBBDirectional movement indicator for assessing price direction and strength. DMI tells you when to be long or short, differentiatING between strong &weak trends. DMI works on all time frames and applicable to any asset.
DMI is a moving average of range expansion over an input period. The positive directional movement indicator (+DMI) measures how strongly price moves upward; the negative directional movement indicator (-DMI) measures how strongly price moves downward. The two lines reflect the respective strength of the bulls versus the bears. Which DMI lines is on top is the dominant DMI. The dominant DMI is stronger and more likely to predict the direction of price. For the buyers and sellers to change dominance, the lines must cross over.
Added feature is Bollinger Bands to moderate signals.
RSI + BB Scalping StrategyThis strategy uses the RSI indicator and the Bollinger Bands to identify trade entries while using the ATR to determine stop-losses. The strategy only triggers when both the RSI and Bollinger Band indicators are both either overbought or oversold.
This indicator is free to use. Trade at your own risk.
Bollinger Bands MTF [LonesomeTheBlue]With this script you can follow Bollinger Bands for current and higher time frame together. Higher time frame is calculated by script.
if current period
1m => higher period=5m
3m => higher period=5m
5m => higher period=15m
15m => higher period=1h
30m => higher period=1h
45m => higher period=1h
1h => higher period=4h
2h => higher period=4h
3h => higher period=4h
4h => higher period=1day
1day => higher period=1week