Bollinger Bands, multi toolBollinger bands multi tool.
The user is allowed to turn on/off four sets of bollinger bands.
The calculation uses simple moving average as default.
However have other options:
Basis options:
options : "SMA", "EMA", "WMA", "VWMA", "SMMA", "DEMA", "TEMA", "HullMA", "LSMA", "VWAP"
Basis can be turned on/off.
The tool allows the user to adjust standard deviation and period.
Two bands with same timeframe as used on chart.
Two bands with option to choose different timeframe.
Very powerfull tool to identify important pivots in volatility analysis.
But can also be used to identify
Search in scripts for "vwap"
SMEF Scalper 2.0SMEF Scalper 2.0 by shaslund.
Trying to mix some humour into technical trading.
Kudos to Douglas Adams for his great books. Please take some time to read them.
I believe all traders have been SMEF'd now and then...
For the uninitiated: SMEF = 'Spontaneous Massive Existence Failure'.
Methology:
I am combining a TEMA and a volume-weighted average to predict the trend changes (buy/sell).
Features:
Some funny, some useful.
Changes in v2.0:
Removed some garbage and unprotected the code.
Thanks to ChrisMoody, LazyBear and Hpotter for invaluable scripting ideas :-)
Now, go ahead and board the 'Heart of Gold' and enjoy the ride :-)
MIDAS VWAP published Jayy See "Release Notes" immediately above. Click on the video to see the "How To" video for this script update.
Moving Average Heatmap Visualization7 different types of moving averages (5 different lengths of each) compared to a base moving average. Base moving average can be configured to be a slew of different types of moving averages (credit to @mortdiggiddy for the code) and have a custom length.
Red = base moving average is over other moving average (bearish)
Green = base moving average is under other moving average (bullish)
lengths for the different MAs are just fibonacci numbers due to lack of creativity.
First 5 moving averages are Simple moving average the next 5 are Exponential moving averages and after that it is weighted moving averages, volume weighted moving average (VWAP), Exponential volume weighted moving average (thanks again @mortdiggiddy ), hull moving averages and lastly zero lag moving averages.
The indicator might lag your chart out a bit so be ready for that.
Have fun!
BTC Multi-Premiums — SharkCIAShows the price of BTC on multiple exchanges, helps to see which is leading in price and if the current price is above or below average.
For use on COINBASE:BTCUSD unless you customize it
To use on other platforms (Bitfinex, BitMEX, etc) go to options and enable "Show Coinbase" then hide whatever exchange you're currently on.
To disable exchanges, uncheck them under the Styles tab.
Sizing GuideThis indicator helps you defining your max sizing, depending on the max $$$ amount you're willing to risk against a specific exponential moving average (or VWAP, default is the 13ema).
You can define your max risk amount and your max allowed sizing. The indicator would suggest the best sizing in order to risk only up to the amount you are comfortable with on a potential trade.
Moreover, the column bar would turn yellow/red if the divergence is above a certain threshold (default are yellow > 1.50% and red > 2.75%, green otherwise).
Reaction//@version=4
study("My Script",overlay=true)
SELL=((2*hlc3-low))
BUY=((2*hlc3-high))
HBOP=((2*hlc3)-(2*low)+high)
LBOP=((2*hlc3)-(2*high)+low)
SELLEMA=ema(SELL,3)
BUYEMA=ema(BUY,3)
HBOPSMA=ema(HBOP,3)
LBOPSMA=ema(LBOP,3)
plot(HBOPSMA ,color=green)
plot(LBOPSMA ,color=red)
plot(SELLEMA )
plot(BUYEMA )
plot(vwap,color=white)
BC= hlc3>BUYEMA and hlc3>hlc3 and low>BUYEMA
SC= hlc3<SELLEMA and hlc3<hlc3 and high<SELLEMA
DN= not BC and not SC
barcolor(BC? green: na)
barcolor(SC? red: na)
barcolor(DN? yellow: na)
Fisher Combo indicatorWhatsUp traders &&
I would like to share with you this script that I created long time ago. Basically, it is the combination of four indicators: VWAP bands, AO, RSI and Fisher transform. The indicator will rank each of the four indicator and only trigger a long or short signal when certain points are achieved.
I created this indicator because I felt that if certain indicators give the same signal then there is a higher win rate. You may want to modify a bit into strategy script and test it with your stock. Recommended 1 minute.
This is not a very good strategy, it can miss many opportunities. It may give wrong signal because it does not consider price action and volume movement or balabala reason.
Hope this script can inspire you and maybe you can create some awesome strategy that makes you $$$$$$
FLT - Fully Loaded TacoThis is a very full indicator.
NOTICE: By default, ALL indicators are turned off in the settings, except for the Bollinger Band, in order to facilitate faster load times.
Features can easily be turned on/off in the settings. You can have as many or as few as you want.
FEATURE LIST:
3 SMAs (Fast, Medium, Slow)
3 EMAs (Fast, Medium, Slow)
Support & Resistance Lines (Lime Color)
Parabolic Support & Resistance (Red dots above, Blue dots below)
Keltner Channel (purple channel lines)
Bollinger Band (Blue Cloud; Center & Borders hidden by default)
TTM Squeeze (Purple Background Color on Chart)
VWAP (Vibrant Blue Glowing Line, Intraday Only)
Fibonacci Retracement (Multicolor, Intraday Only)
Ichimoku Cloud (Standard Colors)
APEX - Buy StrategiesThis the first version of the script i forgot VWAP but ill add it soon but not tonight :)
APEX - VWAPVolume weigted average price for APEX Bot.
For Detector Price above it will mark all candles that even have a high wick above which would also happen in the bot but would most likely not trigger ...its up to you to understand the meaning of it.
Interval Volatility Bands [DW]This is an experimental study that utilizes Volume Weighted Average Price or Time Weighted Average Price calculations, Bollinger Bands, and Fibonacci numbers to estimate volatility over a specified interval.
First, the basis is calculated by selecting:
-VWAP, which has the option to be calculated using real volume or tick volume
-TWAP, which has the option to be calculated using the standard method or exponential method
Next, standard deviation from the basis is calculated and multiplied by a specified expansion coefficient. The result is then added to and subtracted from the basis to calculate the high and low bands.
There are three band calculation methods to chosse from in this script:
-Standard, which uses the default calculations
-Average, which takes a cumulative average of standard deviation
-Hybrid, which takes the maximum of the standard and average standard deviation methods
Lastly, the high and low band ranges are multiplied by Fibonacci Percentages 23.6 - 78.6.
A custom color scheme with eight default presets to choose from is included.
TrendStop by mavilim0732 and KIVANC fr3762TREND STOP is a trend following and Stop Loss indicator.
Prices are on trend after Green line suddenly crossing below prices, conversely bearish after crossing above...
The absolute Stop Level is the red line.
Macd and also Directional indicator signals considered as buy signals in calculating the Trend Stop indicator.
ALSO users can change the 21 Period calculation of the indicator between EMA and the default option of VWAP .
creator: @mavilim0732 on twitter
Topfinder Bottomfinder pivot matcher Midas- jayyMidas Technical Analysis: A VWAP Approach to Trading and Investing in Today’s Markets by
Andrew Coles, David G. Hawkins Copyright © 2011 by Andrew Coles and David G. Hawkins.
Appendix C: TradeStation Code for the MIDAS Topfinder/Bottomfinder Curves ported to tradingview
This code is used to assist in adjusting D volume to intersect pivot candle at a pivot candle when using this script: Top Bottom Finder Public version- Jayy found here:
The "n" number entered into the TB-F script is the topfinder/bottomfinder starting point or anchor
Be sure to enter the correct number in the "Topfinder bottomfinder initiation/anchor candle: 1 for CANDLE low - top finder, 2 for CANDLE high - bottom finder, 3 for CANDLE MIDPOINT (hl2) dialogue box
The location of the match point of the pivot candle is extremely important in the: "Match to PIVOT CANDLE: use 1 for CANDLE low, 2 for midtail of the candle below the BODY, 3 for candle BODY low, 4 for CANDLE HIGH, 5 for midpoint of candletail above body, 6 for candle BODY high". Do not
confuse body high with candle high. The body low will either be the candle open or close. The body high will be either the open or close.
If you expect a trend up the pivot candle is likely the low of the pivot candle ie 1 (2 and 3 are alternatives).
In a trend down the high of the pivot candle is often selected ie 4 (5 or 6 are alternatives)
If the candle body is aqua increase D volume if it is orange reduce D volume. Adjust iteratively until the candle body turns yellow. That will mean that the TB-F line passes through the pivot candle at the selected point.
Jayy
Volume ProblemHello TradingView Community, I'm posting this in hopes one of y'all have answers. I was attempting to make my own VWAP based on one minute data since it's the best we can do and I stumbled across this when I noticed the values were abnormally low. For some reason a cumulative day's worth of 1minute volume is not equal to the actual day's volume. Its significantly lower. If anyone has any idea why or if I made an error in my script can point it out to me I would greatly appreciate it, thank you.
LSMA & VWMADraws linear regression and volume weighted moving average line and displays where they cross.
No vol data vwap like bandsWhat the title says...Just an experiment, have fun with it guys.
Thanks to LazyBear who I stole the filter code from.