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
Pivot
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
Pivot Detector Oscillator, by Giorgos E. Siligardos The Pivot Detector Oscillator, by Giorgos E. Siligardos
The related article is copyrighted material from Stocks & Commodities 2009 Sep
vdubongCustom script I fabricated which I use for Binary Trading on the 1m & 3m charts together with Price action & Time management but the principles are the same for all mediums. Use Price action buy/sell in the clear zones. Use the outer 'pink' horizontal lines (highs / lows / pivots points) to place SL's.
I personally run an additional BB 50/2 for clearer BB higher highs & lower low perspective, but it's not part of the script. Script variables are fully customisable.
I don't take ownership of any part of the script, I not a programmer /script writer just a dabbler. Enjoy :) - VDUBONG UPDATED
Pivot Point Pivot points simply took the high, low, and closing price from the previous period and
divided by 3 to find the pivot. From this pivot, traders would then base their
calculations for three support, and three resistance levels. The calculation for the most
basic flavor of pivot points, known as ‘floor-trader pivots’, along with their support and
resistance levels.
CM_Pivot Points_CustomCustom Pivots Indicator - Plots Yearly, Quarterly, Monthly, Weekly, and Daily Levels.
I created this indicator because when you have multiple Pivots on one chart (For Example The Monthly, Weekly, And Daily Pivots), the only way to know exactly what pivot level your looking at is to color ALL S1 Pivots the same color, but create the plot types to look different. For example S1 = Bright Green with Daily being small circles, weekly being bigger circles, and monthly being even bigger crosses for example. This allows you to visually know exactly what pivot levels your looking at…Instantly without thinking. This indicator allows you to Choose any clor you want for any Pivot Level, and Choose The Plot Type.