Auto Daily Fib Levels R2 by JustUncleLThis study is a variation of my "Automatic Daily Fibonnacci" indicator. This variation automatically draw Fibonacci Pivot levels (or optionally Classic Pivots) based on the previous day's highest and lowest points. The HLC3 is used as the default Daily Pivot level.
Unlike the "Automatic Daily Fibonnacci", this indicator does not redraw/update levels on current day even if the price goes past the R3/S3 levels.
Timeframe: is just a text string and is not checked, so needs to be a valid resolution eg: 60, 120, 240, 360, 480, 720, 1D, 1W, 1M, 2D, 2W, 3M
Pivot LEVELS:
Green = Pivot and Pivot Zone
Blue = R1,S1 Levels and Zone
Red = R2,S2 Levels and Zone
Black = R3,S3 Levels
Pivot
HYPER PIVOT V2As requested added two more Fib levels. 0.618 and 1.272. Turn them off from style menu if no need.
AP_NthPivotCreated by: Andrew Palladino
Date: 1/16/2017
This indicator will display ONLY unhit pivots preceded by additional consecutive unhit pivots.
A pivot is defined as unhit when price travels above or below it without ever crossing the pivot level. A pivot is hit only when prices crosses that level at any given time after the pivot is formed.
The trader can change the following settings:
Pivot Time Frame can be set to: 15, 60, 240, D, W, M or Y
Minimum number of consecutive unhit pivots to display: Default set to 1.
GBPAUD Example:
In the example above there are two AP_NthPivot indicators overlayed.
The blue pivot corresponds to the most recent unhit daily pivot preceded by a second unhit pivot. The red pivot corresponds to the most recent unhit weekly pivot preceded by a second unhit pivot.
The minimum number of consecutive unhit pivots to display, for both cases, is set to 2.
Unhit pivots can become high probability targets, especially when the count is set to 2 or more.
Aggregated BTC VOLUMEAggregated Volume from all major exchanges. Price must touch or drop below pivot but close above it. Volume must break SMA.
Volume Pivot BreakoutVolume breaks its MA. Price touches or goes below pivot then closes above it. Buy on purple and blue.
Volume BreakoutVolume breakout against pivot, make sure that price closes above pivot within the next few candles from purple/blue candle.
Dudes Multi Time-Frame Pivot System [[Up Only]]Dudes Multi Time-Frame Pivot System [ ]
This is the first public beta of a new "ribbon" type of indicator which shows trend information and pivot candle information for 8 different timeframes, all within a very compact and visually appealing space.
It is extremely useful for pinpointing trend changes or current trend by giving you information from 8 different timeframes on one chart. The idea is if multiple time-frames are in sync with each other, the stronger the signal will be. You can easily set alarms on pivot points to trigger Tradingview to send an email or SMS when an important signal appears on the chart. To trigger the alarm, set the indicator to "Cross Up" on the value 0.5. The value of the variable holding candle data is a binary 0 or 1.
The ribbon strategy is split into 3 different indicators because of the large amount of code required to calculate everything. Please contact me if you are interested in purchasing a subscription to the strategy or want more information. The current subscription price is starting at $50USD on a monthly basis. There will be 2 other shared scripts for the other 2 parts of this indicator; Down and Red/Green. Contact me here on tradingview via PM, or via email thedudeontv@gmail.com if you are interested
B3 Weeklies - Pivot S/RBy request, some more of the levels that I like to see. I find that this works well on gold and crude oil the best. Stocks and ETF's sometimes have weird bars in after hours, and this sometimes destroys the week's levels. Any non liquid jump and back bars will likely not be tolerated by the study and ruin its data. The indexes sometimes work, but I find that the other pivot study I released is better for index futures. Forex hasn't been tested on this particular pivot study as of yet. Feel free to comment with your experiences using this with currencies.
This one is designed to show you your current week's action versus last week's action. Fibonacci levels are drawn from the range created by the week before, then offset from pivot HLC/3. These do not reprint so you can trust them to remain the same straight away from Sunday night into Friday's close. On other platforms I can get the next week in future to print as well, showing you where the next week trade levels on Friday before. Maybe I can figure out how to make pinescript print in the right extension, haven't got there yet.
Pretty good selection in 12 days of being a member though, so I am psyched how well this is going in TradingView, learnin' more language all the time. Feel free to leave some feedback, and happy to answer any questions. ~B3
B3 Fibonacci Pivot S/RFor my second share, I give you some levels I look at everyday for the ES minis. HLC/3 of the MTF (multi-time-frame) inputs = mean and Fib-levels formed as support and resistance zones. There are some websites that will show you 20 ways to figure out a pivot for the day's intraday workings, and this one always rang true for me. I keep it set at Res=D and Len=3or5 and use on hourly charts. This indicator is capable of doing like a Res=60m Len=8 for a 5m chart or something of that nature if you wish to test it out.
I haven't tested it out for tick charts and I have noticed that this is good on index and commodity futures, and not so much other things.
Uncanny to me how well this works as reversal awareness for ES. Doesn't mean that one will happen, or if it does that it will have trade-able juice, though it is very important awareness never-the-less.
screencast.com
Posible Next Pivots Script//@posible next pivot
//based in other codes
//Modified by gverdu
study(title="Posible Next Pivots", shorttitle="Next Pivots", overlay=true)
sd = input(false, title="Show Daily Pivots?")
sw = input(true, title="Show Weekly Pivots?")
sm = input(false, title="Show Monthly Pivots?")
sq = input(false, title="Show Quarterly Pivots?")
sy = input(false, title="Show Yearly Pivots?")
pivot = (high + low + close ) / 3.0
intradayTF=1000/interval
dTF=1
wTF=1
mTF=1
TF=isintraday? intradayTF: isdaily? dTF:isweekly? wTF:ismonthly? mTF:0
daily=isintraday?TF:dTF
weekly=isintraday?daily*7:wTF
monthly=isintraday?weekly*4:mTF
yearly=isintraday?monthly*12:12
// changes depending on the current time frame being displayed.
day_offset = daily
week_offset = weekly
month_offset =monthly
year_offset = yearly
//day pivot
dtime_pivot = security(tickerid, 'D', pivot )
plot(sd and dtime_pivot ? dtime_pivot: na, color=blue,title="Next Day Pivot",style=line, linewidth=3, offset=day_offset)
//Next Weeks pivot
wtime_pivot = security(tickerid, 'W', pivot )
plot(sw and wtime_pivot ? wtime_pivot : na, title="Next Weekly Pivot",style=line, color=red,linewidth=3, offset=week_offset)
//Next Months pivot
mtime_pivot = security(tickerid, 'M', pivot )
plot(sm and mtime_pivot ? mtime_pivot: na, color=purple,title="Next Month Pivot",style=line, linewidth=3, offset=month_offset)
//Next Year pivot
ytime_pivot = security(tickerid, '12M', pivot )
plot(sy and ytime_pivot ? ytime_pivot: na, color=orange, title="Next Year Pivot",style=line,linewidth=3, offset=year_offset)
Pivots Daily Weekly Monthly YearlyDaily, Weekly, Monthly and yearly pivot lines
Just the pivot lines without the support and resistance lines
MACD Divergence MultiTimeFrame [FantasticFox]This is a MACD divergence on 3 time-frames, 1h, 4h and 1D.
Please insert the indicator into a 1h chart, otherwise change the lengths' inputs.
you will see H1,H2, H3, R1, R2 and R3 in green and maroon colors.
H means hidden divergence, 1 regards to 1h, 2 to 4h, and 3 to 1D. If the color is green, its bullish, and if its maroon the divergence is bearish.
Gray circles on 4h macd is for those traders who want to check the confirmation on Elliott wave changes.
*Thanks to RicardoSantos MACD divergence.
Kay_High_LowPrevious High low plotting.
COPIED from Chris Moody's script and adjusted it for my needs.
[RS]Shifted Pivots V1update: added weekly and monthly pivots, the offset is a average approximation so there may be inconsistency on the date forecasted to be end of week/month.
(using diferent sessions or limited time intervals is not possible).
Vdub_Tetris_V0Still in test mode
**UPDATE to include colour background BUY / SELL SIGNAL *** -
Double channel with double conformation of pivot / trend reversal
I have a similar concept to this running on MT4 which works quite well together.
Both channels can be customised by changing minutes, D , W , M
I haven't been able to test this out so feel free to do so yourself
Plz not that Im not a coder, But Im learning :)
The base of this code came from @RicardoSantos fib monthly ranges which I stripped out & modified and incorporated zigzag
Clean chart
CM_Pivot Points_M-W-D-4H-1H_FilteredFamous Filtered Pivots Indicator -Many TimeFrames Available
CM_Pivot Points_M-W-D-4H-1H_Filtered
***Special Thanks to TheLark...AKA...The Coding Genius For Providing His Expertise...
***New Feature - Ability to turn On/Off Pivot Moving Average
***New Feature - Ability to turn On/Off Filtered Pivots (Explained Below)
Available Timeframes (Change In Inputs Tab):
1 Hour
4 Hour
Daily
Weekly
Monthly
Yearly
***All Features Available in Inputs Tab
-Ability to Plot just 1, or all Pivot Timeframes
-Defaults to Monthly Pivots
-Ability to turn On/Off Pivot Moving Average
-Ability to turn On/Off Filtered Pivots
-Ability to Plot S3 and R3 on 1 Hour and 4 Hour Pivots
***FILTERED PIVOTS!!!
-THIS IS A WAY TO FIND THE HIGHEST PROBABILITY MOVES
-IF CURRENT PIVOT IS GREATER THAN PREVIOUS PIVOT (INCLUDING MARKET THRESHOLD CALCULATION) THEN PIVOT, S1, & R2 PLOT
-IF CURRENT PIVOT IS LESS THAN PREVIOUS PIVOT (INCLUDING MARKET THRESHOLD CALCULATION) THEN PIVOT, S2, & R1 PLOT
-***THIS IS A WAY TO FILTER OUT PIVOTS AND ONLY PLOT THE LEVELS THAT ARE EXPECTED TO BE MAJOR SUPPORT AND RESISTANCE
***VIDEO COMING SOON WHERE i WILL GO OVER IN DETAIL THE THOUGHT PROCESS AND METHODOLOGY