52 Week High/Low FibonacciThe primary purpose of this indicator is to calculate and plot the 52-week high and low prices along with the Fibonacci retracement levels on the price chart. Fibonacci levels are commonly used in trading to identify potential support, resistance, and price reversal points.
First, the script initializes the Fibonacci levels and their corresponding colors, which will be used to plot the levels on the chart. Next, it calculates the 52-week high and low prices by finding the highest and lowest prices over the last 252 trading days, approximately equivalent to one year. Then, it identifies the overall trend direction by comparing the number of bars since the highest high and the lowest low. If the highest high is more recent, the trend is considered downwards; if the lowest low is more recent, the trend is upwards.
The script then plots the Fibonacci retracement levels on the chart, using horizontal lines at the respective price levels. It also creates labels for each level, displaying the percentage and the price value. Additionally, it draws a line connecting the 52-week high and low prices, providing a visual representation of the price range during the 52-week period.
Pros of this indicator include:
-Automatic calculation and plotting of Fibonacci levels, saving time for traders
-Clear trend identification based on 52-week high and low prices
-Visually appealing and easy-to-read chart representation with color-coded levels
-Provides insight into potential price reversal areas based on widely used Fibonacci levels
Cons of this indicator include:
-Only works on daily timeframes, limiting its usefulness for intraday and weekly traders
-Assumes that the trend will continue in the same direction, which may not always be accurate in real-world markets
-Does not provide explicit buy or sell signals, leaving the trading decision-making process up to the trader
-Solely relies on Fibonacci levels, which may not always be accurate; it is recommended to use other technical indicators or strategies alongside this indicator for a comprehensive trading approach
In conclusion, the '52 Week High Low Fibonacci' indicator is a valuable tool for traders interested in using Fibonacci levels for identifying potential price reversal points. By automatically calculating and plotting these levels based on 52-week high and low prices, the indicator provides a clear, color-coded visual aid, which can be especially helpful for traders who base their strategies on these levels.
However, it's worth noting that this indicator is limited to daily timeframes and doesn't provide explicit buy or sell signals, requiring traders to incorporate their own analysis and judgement in their decision-making process. The indicator also operates on the assumption of trend continuation, which may not always hold true.
While it's a beneficial tool, relying solely on this indicator for trading decisions may not be advisable. It's best used in conjunction with other indicators and trading strategies, providing a more balanced and comprehensive approach to trading in the financial markets. As always, risk management should be a key part of any trading strategy.
**YOUR INSIGHTFUL FEEDBACK OR SUGGESTIONS FOR REVISIONS TO THIS CODE ARE HIGHLY APPRECIATED. PLEASE FEEL FREE TO SHARE YOUR THOUGHTS TO FOSTER ITS CONTINUAL IMPROVEMENT**
Dailychart
Daily (%) - Percentage Above / Below Daily [HODLER]It is a common observation in the world of cryptocurrency that the prices of most digital currencies tend to follow the price movements of Bitcoin. This means that when the price of Bitcoin increases, the prices of other cryptocurrencies usually increase as well, and when the price of Bitcoin decreases, the prices of other cryptocurrencies also tend to decrease, particularly when Bitcoin is near its daily level.
Of course, this is not unique to Bitcoin but also occurs with stocks. You can use this indicator on any asset you choose. Simply select the asset you want to track in the indicator's settings.
In the example chart, you can see CFXBUSD on a 45-minute timeframe chart with the indicator displayed below that tracks Bitcoin on a daily timeframe, as bitcoin was set as the asset in the settings of the indicator. In the lower right corner of the indicator, it will display the price of the asset "Bitcoin" and the percentage by which it is either above or below the daily price (which is calculated in the same way as on the TradingView watchlist).
This indicator can be very useful when trading other assets to closely monitor Bitcoin's (or any other chosen) activity. You can use it to check if the price is above the daily close and if it closed higher or lower than the last bar. Additionally, you can check if it closed above certain moving averages.
A useful feature of this indicator is that you can set an offset percentage for your visuals to adjust for whether the asset is up or down.
However, it is important to note that not all cryptocurrencies are directly correlated with Bitcoin's price movements, and some may even have unique factors that can cause them to behave differently in the market.
If you have any questions or suggestions regarding this indicator, I would greatly appreciate it if you could let me know in the comments.
Daily Number/Trend Reversal IndicatorIndicator identifies potential price trend exhaustion.
Compares this period against the 4th prior period for the condition.
9 periods (or more) with the same condition is an indicator that the trend is ending soon.
Volume + VolatilityBefore I begin I want to mention:
1. This is a variation of the 'CCI & BB' made by matsu_bitmex (Link: ) and SigmaDraconis's 'On Balance Volume Oscillator + Bollinger Bands' (Link: )
2. While using this sometimes you may not notice the crossover so I've added the Line 'x' outside 'x' BB to only see if Line 3 and 4 crossed over
The indicator:
1. When the background is green and the 2 lines are going up it means uptrend
2. When the background is red and the 2 lines are going down it means downtrend
3. When there is a crossover and the background outside BB turns yellow, it means there is a lot of volatility or volume
How to use (Or how I use this):
1. All trades based on the yellow color MUST be during a trend
2. When the color changes to yellow for the 1st time in the direction of a trend it is advisable to enter
[MF] Auto Fibonacci LevelsDescription:
Automatically draw Fibonacci Pivot levels based on the previous (day's, week's or month's)
Range ( High-Low ). The HLC3 is used as the default Pivot level.
Unlike the "Auto Fibonacci Levels", this variation does not update
Levels on current day even if the price goes past the R3/S3 levels.
Timeframes: 1D, 1W, 1M
Range = (High - Low) - From previous Day, Week or month.
FIB LEVELS:
- Yellow = Pivot and Pivot Zone (HLC3 by default)
- red = R1,S1 Levels 0.236 * Range
- Green = R2,S2 Levels 0.368 * Range
- Lime = R3,S3 Levels 0.618 * Range
- Blue = R4,S4 Levels 0.786 * Range
- Gray = R5,S5 Levels 1.000 * Range
- Lime = R6,S6 Levels 1.236 * Range
- Red = R7,S7 Levels 1.382 * Range
- Blue = R8,S8 Levels 1.618 * Range
- Green = R9,S9 Levels 2.000 * Range
CLASSIC LEVELS:
- Yellow = Pivot and Pivot Zone (HLC3)
- Green = R1,S1 Levels (Pivot*2 - Low), (Pivot*2 - High)
- Lime = R2,S2 Levels ( Pivot + Range), ( Pivot - Range)
- Lime = R3,S3 Levels (High + 2*( Pivot - Low)), (Low - 2*(High - Pivot ))
- Blue = R4,S4 Levels (High + 3*( Pivot - Low)), (Low - 3*(High - Pivot ))
Refrences:
- Auto Daily Fib Levels R3.0 by JustUncleL
- Auto Fib by TheYangGuizi
- Monthly Dynamic Range Levels (Fibonaci) V0 by RicardoSantos
Modifications:
- Added next FIB Levels. (changes during the current cycle)
- Added FIB 0.236 Levels
- Added Option to change the colors of the Fib Levels
- Changed Default colors to the colors of Tradingview
- Upgraded to Version4 Pinescript
WMA Combo Crossover V2Before I begin I want to mention:
1. This is an upgrade of my indicator WMA Combo Crossover. (Link: www.tradingview.com)
2. The upgrade was inspired from the CCI and Bollinger Bands indicator by matsu_bitmex. (Link: www.tradingview.com)
3. I have combined the indictor with Bollinger Bands , coloring those sections as yellow, to increase winning trades as well as avoid losing trades by spotting potential reversals with the aid of news avoidance
4. This indicator is designed primarily for NNFX (No Nonsense Forex) though it can be used for any type of trading style
5. Also, I want to thank kurtisbu for helping me out. Thank you!
The indicator:
1. When WMA 25 is blue and is going upwards, it means there is an uptrend
2. When WMA 25 is red and is going down, it means there is a downtrend
3. During a trend, the color may switch to red and blue occasionally. When the color switches back to the direction of the trend, it can be used for re-entries
4. All trades based on the yellow color MUST be during a trend
5. When the color changes to yellow that means price is very volatile and only on the 1st candle is it advisable to enter a trade. (I have not backtested entering on the 2nd candle of a yellow color change)
6. During a trend, when the color changes to yellow and there is an incoming news event, then the chances of a reversal increase and I recommended avoid entering
LTB Zigzag CirclesHello All,
Today I am here with a new idea and script, " LTB Zigzag Circles ". The idea is to create Circles using last 2 zigzag waves and to catch the breakouts earlier than horizontal lines. if a circle is broken then the script shows entry for Long/Short positions. and if broken circle reappears again then the position is closed. You can change Zigzag period as you wish and see the different results.
Here you can see how the script calculates and draws the Circles:
Below you can see how the script draws part of the circle on each bar:
Optionally the script can show levels:
P.S. I haven't tested it as a strategy, Result and Performance may change by Zigzag period, you need to find best Zigzag period according to your strategy. By the way, my Zigzag Circles idea can be improved, if you have any recommendation let me know please ;)
Enjoy!
Daily and Weekly Moving Averages on Daily ChartThis script is designed to be used on Swing and Position style approaches.
Based on moving averages that I use with the integration of a weekly moving average that is visible on the daily chart /all timeframes.
The moving averages are:
9EMA;
21EMA;
10 week SMA ;
50EMA;
150EMA;
and 200EMA.
Base script from CaptainBrett with Matt Caruso's chat with Richard Moglen showing me that this can be done on Tradingview. When searching for the script, I couldn't find it within the public library.
Please Enjoy
GBP/JPY Daily time FX Strategy ATR W% BaselineThis is a preety good strategy suited for long term trading.
It has been adapted and optimized in this case for GBP/JPY 1D time frame.
Its made of Kiojun baseline, together with ATR for stop loss and size calculation and Williams % R
For the purpose of this example we simulate that we have a leverage of 100x in order to be able to buy the ammount of lots required for our stop loss to be in same page with the risk % of our capital.
For entry we have for long, ascending R in the last 2 candles and crossover of close with KIOJUN baseline. For short the same but in reverse.
We exit if we reach the TP -100 points in this example, or SL , which is based on ATR of the last x days.
If you have any questions feel free to write me in private !
EOD TraderMy EOD (End of Day) system for trading on the daily timeframe with minimum stress. Just pair the built-in alerts with the bot of your choice and then let the indicator do the rest. It'll determine the current trend, filter out as much noise as possible and then take you from long to short.
There are options to toggle the following:
Auto fibonacci levels with alerts for the look-back period of your choosing
Auto support and resistance with alerts
Alerts for the price closing above/below the 50MA
A coloured background to show the trend direction (green = up, red = down)
The fib and support levels can be handy when trying to determine when best to take profit or even exit the trade entirely.
Important: I personally use Heikin Ashi candles with this script to further filter entries. An option is available within the script settings to toggle this on/off should you wish to do the same.
This is a premium script. Please DM me for access.
Simple and efficient PSAR swing strategyThis is a strategy build inside tradingview, which I found it works great with swing/position trading.
It works based on parabolic sar indicator, when indicator is below the candle, is an uptrend and when its its above is a downtrend.
At the same time it's very nice, because it has a sort of stop loss which is dynamic, because it triggers when candle crosses with indicator, so you dont have to worry about stop loss or take profit .
The key here of course, is going to be the risk management, if you want to success with it, never trade more than 2% of you capital, and if you want you can always apply a rule inside the code to close all position if x % amount of equity was going down, although I recommend have patience and let the system do its job.
I recommend this strategy to be used with charts like 1 day or 1 week. If you need and want I can convert it to an indicator that uses alerts (although with strategy as well can be made to send alerts).
PS. When you add this strategy on chart, inside is has different versions, if you use first version(1), it uses the system I explain above. If you use the last one, its based on risk management when the stop loss is the difference between psar and the candle, but it still needs some adjustments to make.
Overall first one is atm much more profitable, but I believe that the version with risk management can be much better, but it need much more adjustments to make which I dont have the time at the moment for it.
Enjoy it .
Daily Forex ArrowsArrows that will appear on the candles that follow one or more candle patterns, showing the possible market direction. It's best to enter when the new candle form, after the candle with the arrow appear. Daily chart it's the best on the backtests. Based with Forex markets.
B3 FisherTransformThis is the indicator from the trading strategy I posted recently. I do like Fisher Transform a lot on day bar charts. However, the smaller you go in bar interval, the less I feel it is as usable. At that point, any oscillator will usually do. When comparing the slope of the line and direction to the chart price action using day bars, I get a great sense of when to enter into a swing.
The indicator is often earlier to turn than other indicators, therefor, occasionally a trade may take a day to 3 days to start moving well in the desired direction, but it is never late which is very nice!
Use in conjunction with your support and resistance levels to find great entry points on reversals.
Use in conjunction with moving averages to find the reentry into a continuing trend.
Features include bar paint, zero line, and adjustable deviation values to target trend continuation and possible max oscillation reversal trades.
Enjoy! ~B3 d^.^b
Daily Crash Finder 2this indicator shows buy and sell point for long time and works only daily period.
gray->notr
lime -> sell
green -> sell more
maroon -> buy
red -> buy more
axiaunlimited.com pivot pointswww.axiaunlimited.com
The Last Forex Course You'll Ever Need
----------------------------------------------
Pivot Points
These are daily pivot points that update
automatically for every single day as the
day opens.
Out of all pivot point versions/variations, these are by far to be the most accurate.
The daily pivot is the green line.
S1 2 3 are the blue
R1 2 3 are the red.
It has been created so it's a clean indicator and non-intrusive to the user.
If you would like access, please visit axiaunlimited.com and contact us.
Alternatively, you can go to my instagram @koliokolevfx and inbox me
Happy Trading!
DAILY TARI Hi guys!
This is maybe my most powerfull strategy. It's only for DAILY CHARTS.
Since the chart is D you have to look at it only 1 minute per day as the new candel appears.
You will find the signal to BUY or to SELL, the TAKE PROFIT and STOP LOSS or TRAILING STOP LOSS.
The idea behind this is the volatility and an oscillator based on the volatility, plus something extra.
The back test here is with Euro/USD because you can see the last 25 years, but feel free to try any other currencies!.
The default TP is 200 pips and SL 200 pips too.
If you us Stop Loss try even in the range 22-80. If you use Trailing Stop Loss 200 is ok.
You can have even a Risk/Reward ratio around 10!
There is another input, called TARI. It works as a filter, rising it you will have less trades but with higher returns.
You can have a free trial on request.
To use this strategy you need to subscribe 50€/month! Check out on my page!
Enjoy your wallet!
Tari.
2% candlePart of my strategy involves entering a trade based on a candle on a 5-min chart being < 2% (ignoring major volatility).
I got tired of calculating the range of a single candle either in my head or on a calculator, so I wrote this up. Feel free to share it.
Shows the %move of any single candle, default horizontal lines are 1% & 2%, can be changed by clicking the gear icon next to the indicator after you have added the indicator to your chart. Works on any timeframe, 5m, 1h, 1d, etc , obviously
the higher the timeframe, the larger the move.
Humble Student OB/OS Trifecta indicatorAfter reading Cam Hui's blog post about his "Trifecta" bottom spotting model I thought I'd try my hand at scripting it as an indicator. The results are pretty close to what he describes. Though the data TradingView feeds me doesn't seem to be identical to what he's using on StockCharts.com the results are close enough that I will call the effort a success worth publishing.