VIX MTF MomentumSweet little momentum gadget to track the VIX Index.
What is the VIX?
The CBOE S&P 500 Volatility Index (VIX) is known as the 'Fear Index' which can measure how worried traders are that the S&P 500 might suddenly drop within the next 30 days.
When the VIX starts moving higher, it is telling you that traders are getting nervous. When the VIX starts moving lower, it is telling you that traders are gaining confidence.
VIX calculation?
The Chicago Board of Options Exchange Market Volatility Index (VIX) is a measure of implied volatility (Of the S&P 500 securities options), based on the prices of a basket of S&P 500 Index options with 30 days to expiration.
How to use:
If VIX Momentum is above 0 (RED) traders are getting nervous.
If VIX Momentum is below 0 (GREEN) traders are gaining confidence.
Follow to get updates and new scripts: www.tradingview.com
하이-로우 인덱스
Low - High Simple TrackerYet another "Low - High" indicator using the new Pine Script Arrays.
The indicator uses the latests Lows and Highs to plot a trend line and reversal/slowdown.
More detailed explanation inside the script.
Enjoy!
Green - Up Trending
Red - Down Trending
White - Slow Down/Reversal might occur.
Made for educational purposes of how to use Arrays, yet can be very useful.
High - Low Trend TunnelHigh - Low Trend Tunnel Experiment.
Using latest pinescript Array support!
Plotting Highest highs and Lowest lows for specific length (can be defined in settings).
The blue line is whom determinate the direction.
Blue line is the average of the highest highs and lowest lows smoothed by EMA.
Green - Up Trending.
Red - Down Trending.
Yellow - Squeeze, a reversal might be coming.
Any suggestions/comments are welcome as this is an experiment.
High/Low meterUsing the new 'pinescript' array support to build an High/Low tunnel meter.
Using the Array to save only X HIGHEST HIGHS and Y LOWEST LOWS.
By the X and Y i build a tunnel - X is the top line (highs) and Y bottom line (lows)
Green - Up Trending
Red - Down Trending
Yellow - Reversal / drawback might occur.
Previous Candle High and LowThis Indicator add's a label over and below the previous candle which show's it's high and low values.
Support Resistance HH HL LH LLThis is a very powerful indicator and I'm really happy to show you how it works.
It shows Higher Highs(HH),Higher Lows(HL),Lower Highs(LH),and Lower Lows (LL), the supports and the resistance.
Lets start with the HH, HL, LH and LL.
This points helps a lot who can not identify them yet. They help to identify up trends having HH and HL in sequence, and when the trend is not strong anymore creating LH after.
For down trends, the indicator show LH and LL in sequence and when the trend is not strong anymore showing HL after.
As well this indicator helps to draw trend lines when it shows. For example the LL drawing the line from the low of the first candle (LL) to the low of the second candle showing HL for an uptrend.
It can be done for the down trend, drawing the trend line from the high of the candle showing the HH, to the high of the candle showing LH.
Another use of the HH, HL, LH, LL can be the stop loss this will be explained later in the support and resistance part.
Now let me explain the support and resistance.
The support and resistance can be used as entry when the price break true using the previous HH, HL, LH and LL as stop loss.
For a safer entry I advise to use the retest of the line.
In the settings of the indicator there is the possibility to make the indicators invisible, to change the color, and as well to change how many candles before and after the main candle showing the HH, HL, LH and LL, but I advise to leave it as it is.
Thank you and lets take some pips!
Steady Swift by Hashtag_binarySteady Swift is an indicator that shows the forex sessions and the highest and lowest points of each session of the day.
The sessions that appear on the indicator are Tokyo, London and New York.
The calculation of each session is per hour and goes from 0 to 24 hours, where point 0 begins in the Tokyo session.
In the settings part sessions can be selected or removed, just as you can choose if you want the high and low points to be measured from the wick or the body of the candle, and you can also place the colored background or remove it if you wish (as a preference it is better to leave the background color).
The lines (either current or past) of the high points and the low points of each session can be modified in thickness.
There is a variety to choose the color of the sessions. Even modify the term of each session.
Major Event Price Indicators (Coronavirus Lows)This very simple script adds a corridor for two low price ranges, where Corona started to hit. Useful to visualize where a stock currently trades at, relative to the Corona / Covid-19 crisis.
Can easily be adjusted for different dates regarding any major events, crashes. Useful when you run out of Alarms and just want to see "is that still below or above where it was before ?".
Add as many dates as you want, just alter the names of each indicator.
Built upon the script of vitvlkv.
CPR by Anand with PDL/PDH & Breakouts 15/30 minsThis is an enhanced version of CPR by Anand with Configurable previous day high and low and option to configure breakout lines of 15 and 30 mins.
Will be an useful tool for day traders who follows CPR tricks and breakouts.
GC Supports & ResistancesThe indicator display the supports and resistances available. Breakout also are reported in case that not exists at least three resistances.
Does print lines and labels with each identified data (S, R and BO).
[Zekis]Opening Range Higher High Lower Low Forex SessionsOpening Range Higher High Lower Low Forex Sessions
Very useful for session trading, the opening range will reset when new session is start and will plot new higher highs and new lower lows until the end of the session.
Ability to change between 3 opening sessions:
* London - opens at 3:00 am EST
* New York - opens at 8:00 am EST
* Tokyo - opens at 7:00 pm EST
* New day - GMT +0
Green arrow - new higher high
Red arrow - new lower low
Green background - the strength of the bullish trend
Red background - the strength of the bearish trend
(the lighter the color, the stronger the trend)
Enjoy!
@zekis
Hi-Lo VT-Trader24月 1
日足以下のチャートで、選択している通貨の日足を表示します。
Displays the daily basis of the selected currency on the chart below the daily basis.
security()を使用する際の塗り直しを回避する方法を反映
Reflects how to avoid repainting when using security()
Function Highest/Lowest by PeterONo matter how much I like PineScript, there are still things missing in the language. One of the most annoying issues is that you cannot set dynamic length value for highest/lowest functions. This length must be fixed integer. But it doesn't make sense in a lot of cases, when you'd like to know what was the highest/lowest value of a series SINCE EVENT in the past, but you don't know WHEN this event exactly happened.
Us, coders would like to do this: `highest(series,barssince(...))`
But it is not working.
Numerous coders are using RicardoSantos' f_highest/f_lowest script (), probably the most often copy/pasted snippet of PineScript code out there. It is doing more-less what `highest(series,barssince(...))` would be doing, but with hardcoded max bars back.
Ricardo is my idol by the way, but that didn't stop me from creating my own version of Highest/Lowest functions. They are fast, simple, effective and very light for Pine engine.
Please treat this as an OPEN SOURCE snippet of code, which can be used in variety of ways.
I have implemented a simple use-case myself, to demonstrate what can be done. The example shows what was the highest/lowest value of RSI since the previous cross of Stochastic. So that you don't enter SHORT on Stochastic crossunder, if RSI didn't reach oversold (<30) since the previous Stochastic crossunder = aka maybe the downtrend has exhausted.
I'm sure you'll find plenty of use cases for it in your studies and strategies as well. If you create your own code using my Highest/Lowest functions, don't hesitate to put a link down here in comments.
P.S. This is not a strategy in any way, so don't ask me "does it backtest well?".
P.S.2 This code doesn't repaint as well ;)
ORB 15 Min By EquityDurai#Let the index/stock trade for the first fifteen minutes and then use the high and low of this "fifteen minute range" as support and resistance levels.
#A buy signal is given when price exceeds the high of the 15 minute range after an up gap.
#A sell signal is given when price moves below the low of the 15 minute range after a down gap.
#It's a simple technique that works like a charm in many cases.
>If you use this technique, though, a few caveats are in order to avoid whipsaws and other market traps.
>The most common whipsaw is a trading range that lasts longer than 15 minutes.
>If an obvious range builds in 20, 25 or even 30 minutes , use those to define your support and resistance levels.
>Also consider the higher noise level in the morning.
>A breakout that extends only a tick or two can be easily reversed and trap you in a sudden loss.
>So let others take the bait at these levels, while you find pullbacks and narrow range bars for trade execution.
Donchain BreakoutIt is a long only strategy.
1. Buy when price breaks out of the upper band.
2. Exit has two options. Option 1 allows you to exit using lower band. Option 2 allows you to exit using basis line.
3. Slippage and commissions are not considered in the return calculation.
Ichimoku Kinkō hyō Keizen 改MTF善The script is not finnished yet and show's an other interpretation of how it could be scripted
Step -1 is complete... Basic Ichimoku with asjutable length and editable lines colors and visibilities.
Step -2 in progress... Adding ability to une multiple Spans, sens and Kumo on higher and lower timeframe.
Your Step : Like and Share ;) have a good year 2020 !
2020-01-06 /--------/ -R.V.
Jan 06
Release Notes: The script is not finnished yet and show's an other interpretation of how it could be scripted
Step -1 is complete... Basic Ichimoku with asjutable length and editable lines colors and visibilities.
Step -2 in progress... Adding ability to une multiple Spans, sens and Kumo on higher and lower timeframe.
Your Step : Like and Share ;) have a good year 2020 !
2020-01-06 /--------/ -R.V.
Jan 07
Jan 13
Release Notes: MTF Ichimoku is on it's way !!
Jan 17
Release Notes: The script is not finnished yet and show's an interpretation of how it could be scripted
Step -1 is complete... Basic Ichimoku with asjutable length and editable lines colors and visibilities.
Step -2 in complete... Adding ability to use multiple Spans, sens and Kumo on higher timeframe.
Step -3 in progress... Creating a UNIX based function to framgments actual chart periods in subcandles or "Subprices/periods" to plot multiple Spans, sens and Kumo on LOWER timeframe.
Your Step : Like and Share ;) have a good year 2020 !
/--------Coder--------/ -R.V.
Range Box + VMA cloudsHere's a mix of two indicators that I find particularly useful.
One is a Range Box showing High and Low of the day plus 50% range, as well as high and low of the previous day. The Box changes color based on whether it closed higher or lower than the previous session.
The second one plots Variable Moving Average clouds - short and long term one.
The rules are pretty simple - take long trades only if the box is green, short trades if it's red.
Candle close above both clouds - long signal. If the price is being rejected from the long term cloud - buy the dip (or rally).
Pretty straightforward.
Enjoy
Credit for VMA: LazyBear
Credit for High Low DayBox: ahoudori
Golden Pivot1. Golden Pivot indicator combines Central Pivot Range and Camarilla Pivots.
2. Pivot calculations are based on Secret of Pivot Boss book by Frank Ochoa.
3. One can also view tomorrow's pivots by today EOD.
Ichimoku Kinkō hyō Keizen 改善
The script is not finnished yet and show's an other interpretation of how it could be scripted
Step -1 is complete... Basic Ichimoku with asjutable length and editable lines colors and visibilities.
Step -2 in progress... Adding ability to une multiple Spans, sens and Kumo on higher and lower timeframe.
Your Step : Like and Share ;) have a good year 2020 !
2020-01-06 /--------/ -R.V.
High Low YesterdayMy friends, this is a very simple script, but it has some work to function the way it currently does.
Basically it prints the HIGH and LOW from previous day into the current day. This forms like a channel.
It's useful to visually detect when the price cross over the yesterday's high, or close under yesterday's low.
You can activate/deactivate colors as input parameter:
- Price above a previous high: fills green.
- Price below a previous low: fills red.
- Price inside previous low/high: fills blue.
Hope this helps to you too.
This only works for intraday resolutions only (less than 1D)
More to come: I'm working to include pre-market low/high for the current trading day.
High-Low- Signal (Expo)High-Low-Signal (Expo)
DESCRIPTION
This simple but powerful High-Low indicator plots price extremes. Either it’s an exhausting sign or a continuation sign of the trend. The color of the cloud determines the trend, and the height of the peaks determines the strength in the price moves. You can easily compare current peaks with historical ones to understand the current dynamics and what might happen next.
This indicator is a must if you want to understand price dynamics in the market. The indicator is perfect to combine with other indicators to confirm the signal.
For example:
Combine it with trend lines/Channels/Bollinger Band, you name it! If the indicator peaks in conjunction with that the price reaches a trend line/Channels/Bollinger Band. It's a great sign!
HOW TO USE
1. Look for a signal
2. Identify the color and height of the peak. Compare it to historical ones to get an understanding of the current market dynamics.
3. Combine the indicator with e.g. trend lines/Channels/Bollinger Band
4. Consider Enter the market.
INDICATOR IN ACTION
BTCUSD
BTCUSD
BTCUSD
Wall Street
EURJPY
EURUSD
GOLD
I hope you find this indicator useful , and please comment or contact me if you like the script or have any questions/suggestions for future improvements. Thanks!
I will continue to work on this indicator, so please share your experience and feedback with me so that I can continuously improve it. Thanks to everyone that have contacted me regarding my scripts. Your feedback is valuable for future developments!
ACCESS THE INDICATOR
• Contact me on TradingView or use the links below
-----------------
Disclaimer
Copyright by Zeiierman.
The information contained in my scripts/indicators/ideas does not constitute financial advice or a solicitation to buy or sell any securities of any type. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from use of or reliance on such information.
All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, or individual’s trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
My scripts/indicators/ideas are only for educational purposes!
High/Low Weekly TimeframeI'm testing a simple but useful indicator that plots the high and low for the current week. The time-frame can be selected by the user.
It's useful when you're trading in a smaller time-frame (example: 1H or 4H) to know exactly the weekly low and high, and whether the price breaks above or below this price lines.
This indicator allows you:
- To select the desired time-frame to get the Low and High.
- To print an optional EMA for the same time-frame.
- To optionally change the bar-color when the close price crosses above the weekly high or crosses below the weekly low.
Hope this helps you to visually identify price movements.
If you like this script please give me a like and comment below.
Thanks,
Rodrigo