BAT Multi Anchored VWAPMulti Anchored VWAP which includes:
BTC Key Pivots
SPX Key Pivots
Yearly Opens
5 Adjustable Dates
Works on all assets, unlike some VWAP calculations.
Cari dalam skrip untuk "spx"
Alt Chart DivergenceThis script is designed to allow you to view bullish or bearish divergences between Bitcoin and ETH or an other alt of choice. However, you could also apply the idea in reverse or use it to look at chart comparisons such as DJI vs SPX or XAU vs XAG or UKOIL vs USOIL. Any alternate ticker can be used to plot divergences on the primary ticker treating the alternate chart as an indicator.
The design is very simple, just showing a dot for each case of bullish or bearish divergence.
Volatitity Bands (STARC) on RSI for reversal warning [beta]Origin : The Indicator uses STARC volatilty bands created by Manning Stoller, based on ATR.
He perfered them to Bollinger because extreme price action never exceeds them.
Her former scholar and now TA Superstar Constance Brown applied them on RSI for getting
very relavant trend reversals. (She only used them in times when "overbought or not" becomes a severe question.
What it does: It delivers a reversal signal after rsi exceeded the bands and - as the bands resume the trend - the rsi fails to test the band once more. This is the moment of a reversal warning.
How to work wit h:
- Take the index of your interest and choose a time horizon one or two scales higher than your usual working horizon .(i.e if you work on Daily choose weekly).
-Scale the upper and the lower band via settings, so that the rsi only in rare cases exceeds or touches the bands. This is to tweak the reversal threshold. (For weekly SPX i am fine with 2.2 and 2.1)
- Find the arrows that mark possible reversals.
- Ready
Note: I called this a beta because i publish it with nearly no practical experience with it , just checked the formal correctness of the code. (Published so fast because it was written during the coronavirus days, for which to handle it might be helpful. )So feedback very welcome.
I took the formula in slight modification from the book "Technical Analysis for the Trading Professional", 2nd edition, by Constance Brown.
"Fun" Note: As you see the script would have warned before the corona selling - if you had used it.
I didn't because bull flags and all predicted nice weather...
Greets and again feedback welcome
yoxxx
SMU Quantum Thermo BallsThis script is the enhanced version of Market Thermometer with one difference. This one has Quantum Thermo balls shooting out of the thermometer tube when overheated. Quantum psychology, Quantum observation, call it what you like
My scripts are designed to beat ALGO, so the behavior of indicators is not like traditional indicators. Don't try to overthink it and compare it to other established functions.
If you knew ALGo as much as I do, then you would also ditch old indicators and design your own weird scripts to match the ALGO's personality. Oh yes, each AlGo for each stock has its own programming personality. Most my scripts are tuned to beat SPX ALGO meniac
Enjoy and think outside the box, the only way to beat the ALGO
Relative Strength(RSMK) + Perks - Markos KatsanosIf you are desperately looking for a novel RSI, this isn't that. This is another lesser known novel species of indicator. Hot off the press, in multiple stunning color schemes, I present my version of "Relative Strength (RSMK)" employing PSv4.0, originally formulated by Markos Katsanos for TASC - March 2020 Traders Tips. This indicator is used to compare performance of an asset to a market index of your choosing. I included the S&P 500 index along side the Dow Jones and the NASDAQ indices selectively by an input() in "Settings". You may comparatively analyze other global market indices by adapting the code, if you are skilled enough in Pine to do so.
With this contribution to the Tradingview community, also included is MY twin algorithmic formulation of "Comparative Relative Strength" as a supplementary companion indicator. They are eerily similar, so I decided to include it. You may easily disable my algorithm within the indicator "Settings". I do hope you may find both of them useful. Configurations are displayed above in multiple scenarios that should be suitable for most traders.
As always, I have included advanced Pine programming techniques that conform to proper "Pine Etiquette". For those of you who are newcomers to Pine Script, this script may also help you understand advanced programming techniques in Pine and how they may be utilized in a most effective manner. Utilizing the "Power of Pine", I included the maximum amount of features I could surmise in an ultra small yet powerful package, being less than a 60 line implementation at initial release.
Unfortunately, there are so many Pine mastery techniques included, I don't have time to write about all of them. I will have to let you discover them for yourself, excluding the following Pine "Tricks and Tips" described next. Of notable mention with this release, I have "overwritten" the Pine built-in function ema(). You may overwrite other built-in functions too. If you weren't aware of this Pine capability, you now know! Just heed caution when doing so to ensure your replacement algorithms are 100% sound. My ema() will also accept a floating point number for the period having ultimate adjustability. Yep, you heard all of that properly. Pine is becoming more impressive than `impressive` was originally thought of...
Features List Includes:
Dark Background - Easily disabled in indicator Settings->Style for "Light" charts or with Pine commenting
AND much, much more... You have the source!
The comments section below is solely just for commenting and other remarks, ideas, compliments, etc... regarding only this indicator, not others. When available time provides itself, I will consider your inquiries, thoughts, and concepts presented below in the comments section, should you have any questions or comments regarding this indicator. When my indicators achieve more prevalent use by TV members, I may implement more ideas when they present themselves as worthy additions. As always, "Like" it if you simply just like it with a proper thumbs up, and also return to my scripts list occasionally for additional postings. Have a profitable future everyone!
Grand Trend Forecasting - A Simple And Original Approach Today we'll link time series forecasting with signal processing in order to provide an original and funny trend forecasting method, the post share lot of information, if you just want to see how to use the indicator then go to the section "Using The Indicator".
Time series forecasting is an area dealing with the prediction of future values of a series by using a specific model, the model is the main tool that is used for forecasting, and is often an expression based on a set of predictor terms and parameters, for example the linear regression (model) is a 1st order polynomial (expression) using 2 parameters and a predictor variable ax + b . Today we won't be using the linear regression nor the LSMA.
In time series analysis we can describe the time series with a model, in the case of the closing price a simple model could be as follows :
Price = Trend + Cycles + Noise
The variables of the model are the components, such model is additive since we add the component with each others, we should be familiar with each components of the model, the trend represent a simple long term variation of high amplitude, the cycles are periodic fluctuations centered around 0 of varying period and amplitude, the noise component represent shorter term irregular variations with mean 0.
As a trader we are mostly interested by the cycles and the trend, altho the cycles are relatively more technical to trade and can constitute parasitic fluctuations (think about retracements in a trend affecting your trend indicator, causing potential false signals).
If you are curious, in signal processing combining components has a specific name, "synthesis" , here we are dealing with additive synthesis, other type of synthesis are more specific to audio processing and are relatively more complex, but could be used in technical analysis.
So what to do with our components ? If we want to trade the trend, we should estimate right ? Estimating the trend component involve removing the cycle and noise component from the price, if you have read stuff about filters you should know where i'am going, yep, we should use filters, in the case of keeping the trend we can use a simple moving average of relatively high period, and here we go.
However the lag problem, which is recurrent, come back again, we end up with information easier to interpret (here the trend, which is a simple fluctuation such as a line or other smooth curve) at the cost of decision timing, that is unfortunate but as i said the information, here the moving average output, is relatively simple, and could be easily forecasted right ? If you plot a moving average of high period it would be easier for you to forecast its future values. And thats what we aim to do today, provide an estimate of the trend that should be easy to forecast, and should fit to the price relatively well in order to produce forecast that could determine the position of future closing prices observations.
Estimating And Forecasting The Trend
The parameter of the indicator dealing with the estimation of the trend is length , with higher values of length attenuating the cycle and noise component in the price, note however that high values of length can return a really long term trend unlike a simple moving average, so a small value of length, 14 for example can still produce relatively correct estimate of trend.
here length = 14.
The rough estimate of the trend is t in the code, and is an IIR filter, that is, it is based on recursion. Now i'll pass on the filter design explanation but in short, weights are constants, with higher weights allocated to the previous length values of the filter, you can see on the code that the first part of t is similar to an exponential moving average with :
t(n) = 0.9t(n-length) + 0.1*Price
However while the EMA only use the precedent value for the recursion, here we use the precedent length value, this would just output a noisy and really slow output, therefore in order to create a better fit we add : 0.9*(t(n-length) - t(n-2length)) , and this create the rough trend estimate that you can see in blue. On the parameters, 0.9 is used since it gives the best estimate in my opinion, higher values would create more periodic output and lower values would just create a rougher output.
The blue line still contain a residual of the cycle/noise component, this is why it is smoothed with a simple moving average of period length. If you are curious, a filter estimating the trend but still containing noisy fluctuations is called "Notch" filter, such filter would depending on the cutoff remove/attenuate mid term cyclic fluctuations while preserving the trend and the noise, its the opposite of a bandpass filter.
In order to forecast values, we simply sum our trend estimate with the trend estimate change with period equal to the forecasting horizon period, this is a really really simple forecasting method, but it can produce decent results, it can also allows the forecast to start from the last point of the trend estimate.
Using The Indicator
We explained the length parameter in the precedent section, src is the input series which the trend is estimated, forecast determine the forecasting horizon, recommend values for forecast should be equal to length, length/2 or length*2, altho i strongly recommend length.
here length and forecast are both equal to 14 .
The corrective parameter affect the trend estimate, it reduce the overshoot and can led to a curve that might fit better to the price.
The indicator with the non corrective version above, and the corrective one below.
The source parameter determine the source of the forecast, when "Noisy" is selected the source is the blue line, and produce a noisy forecast, when "Smooth" is selected the source is the moving average of t , this create a smoother forecast.
The width interval control...the width of the intervals, they can be seen above and under the forecast plot, they are constructed by adding/subtracting the forecast with the forecast moving average absolute error with respect to the price. Prediction intervals are often associated with a probability (determining the probability of future values being between the interval) here we can't determine such probability with accuracy, this require (i think) an analysis of the forecasting distribution as well as assumptions on the distribution of the forecasting error.
Finally it is possible to see historical forecasts, that is, forecasts previously generated by checking the "Show Historical Forecasts" option.
Examples
Good forecasts mostly occur when the price is close to the trend estimate, this include the following highlighted periods on AMD 15TF with default settings :
We can see the same thing at the end of EURUSD :
However we can't always obtain suitable fits, here it is isn't sufficient on BTCUSD :
We can see wide intervals, we could change length or use the corrective option to get better results, another option is to use a log scale.
We will end the examples with the log SPX, who posses a linear trend, so for example a linear model such as a linear regression would be really adapted, lets see how the indicator perform :
Not a great fit, we could try to use an higher length value and use "Smooth" :
Most recent fits are quite decent.
Conclusions
A forecasting indicator has been presented in this post. The indicator use an original approach toward estimating the trend component in the closing price. Of course i should have given statistics related to the forecasting error, however such analysis is worth doing with better methods and in more advanced environment allowing for optimization.
But we have learned some stuff related to signal processing as well as time series analysis, seeing a time series as the sum of various components is really helpful when it comes to make sense of chaotic and noisy series and is a basic topic in time series analysis.
You can see that in this new year i work harder on the visual of my indicators without trying to fall in the label addict trap, something that i wasn't really doing before, let me know what do you think of it.
Thanks for reading !
SMU Antimatter CandlesThis script is phycological similar to my Quantum candles series. So it is completely left field and may not suit everyone.
Antimatter Candles push the stock/symbol into negative antimatter universe where up is down and down is up.
In the antimatter universe, when 'actual' index goes up, the antimatter index goes down and vice versa. It means Green in the antimatter universe is behaving like Red and vice versa.
The phycology part is, our mind expects the stocks to go up even though we (bears) want it to come down. So every time you look at a green candle, you re-affirm the market upside move. Those familiar with Quantum Physics know that our mind re-enforces the external reality.
So when media tell us stock will go up, we are being trained (brainwashed) to assume stocks always go up.
For example, say you want to start your trading day and log into TradingView to see your chart. Even if you are bearish, in the back of your mind you expect to see stocks or index such as SPX gone up, and you also expect to see a Green candle melt-up.
So unconsciously, you are promoting the behaviour of Melt-up market. This script does the opposite where if you see a green candles the actual market has gone down. Physiologically speaking, this script de-hypnotise you from media brainwash
The antimatter candles enforce the opposite. When you see a green antimatter candle going up, it is mirroring a Red candle when the price goes down. So if you are a BEARISH on stock, you want to see more green and uptrend in the antimatter universe
To use the script, you need to turn off actual candle and do the opposite to go back to the reality mode.
Kind of like reverse scale with negative numbers and opposite colours.
Candlesticks ANN for Stock Markets TF : 1WHello, this script consists of training candlesticks with Artificial Neural Networks (ANN).
In addition to the first series, candlesticks' bodies and wicks were also introduced as training inputs.
The inputs are individually trained to find the relationship between the subsequent historical value of all candlestick values 1.(High,Low,Close,Open)
The outputs are adapted to the current values with a simple forecast code.
Once the OHLC value is found, the exponential moving averages of 5 and 20 periods are used.
Reminder : OHLC = (Open + High + Close + Low ) / 4
First version :
Script is designed for S&P 500 Indices,Funds,ETFs, especially S&P 500 Stocks,and for all liquid Stocks all around the World.
NOTE: This script is only suitable for 1W time-frame for Stocks.
The average training error rates are less than 5 per thousand for each candlestick variable. (Average Error < 0.005 )
I've just finished it and haven't tested it in detail.
So let's use it carefully as a supporter.
Best regards !
ADEDEJI_SPYDER_v.yThis indicator is a scanner and it works effectively for any digital market on tradingview.
This version scans a preset group of instruments on NASDAQ and NYSE for stocks that meet preset and built-in conditions favorable for potential positive price action movements. This can significantly and greatly reduce the time required to manually search the market looking for great setups.
The assets in this version's search list (and the exchange) are:
AAPL (NASDAQ)
ABMD (NASDAQ)
ACIA (NASDAQ)
ADBE (NASDAQ)
AMAT (NASDAQ)
AMD (NASDAQ)
AMZN (NASDAQ)
ATVI (NASDAQ)
BABA (NYSE)
BIDU (NASDAQ)
BLK (NYSE)
CAT (NYSE)
CMG (NYSE)
COST (NASDAQ)
DIS (NYSE)
FB (NASDAQ)
GOOG (NASDAQ)
JMIA (NYSE)
JPM (NYSE)
KO (NYSE)
MSFT (NASDAQ)
NFLX (NASDAQ)
NKE (NYSE)
TSLA (NASDAQ)
UBER (NYSE)
SPX (TVC)
How to use:
Simply add the indicator to your chart, wait for the scan/search to be complete and the result displayed. Go to any of the displayed pairs and as you normally would, time your entries with your preferred tools and TA.
Development/improvement is a continuous thing!
Disclaimer:
Past performance does not guarantee future results. This tool/indicator is for educational purposes. As always you should fully understand there are high risks involved when trading cryptocurrencies and other digital instruments.
Buffet Indicator [QuantNomad]Created a version of Buffet Indicator for TradingView.
He calls it "the best single measure of where valuations stand at any given moment".
Computations are very simple, it is simply the ratio between total stock market capitalization and US GDP.
I used the S&P 500 capitalization instead of the total so value here might be a bit lower than in the original indicator.
Very high values might mean that we're now in a bubble and correction might follow shortly.
ANN Next Coming Candlestick Forecast SPX 1D v1.0WARNING:
Experimental and incomplete.
Script is open to development and will be developed.
This is just version 1.0
STRUCTURE
This script is trained according to the open, close, high and low values of the bars.
It is tried to predict the future values of opening, closing, high and low values.
A few simple codes were used to correlate expectation with current values. (You can see between line 129 - 159 )
Therefore, they are all individually trained.
You can see in functions.
The average training error of each variable is less than 0.011.
NOTE :
This script is designed for experimental use on S & P 500 and connected instruments only on 1-day bars.
The Plotcandle function is inspired by the following script of alexgrover :
Since we estimate the next values, our error rates should be much lower for all candlestick values. This is just first version to show logic.
I will continue to look for other variables to reach average error = 0.001 - 0.005 for each candlestick status.
Feel free to use and improve , this is open-source.
Best regards.
Macroeconomic Artificial Neural Networks
This script was created by training 20 selected macroeconomic data to construct artificial neural networks on the S&P 500 index.
No technical analysis data were used.
The average error rate is 0.01.
In this respect, there is a strong relationship between the index and macroeconomic data.
Although it affects the whole world,I personally recommend using it under the following conditions: S&P 500 and related ETFs in 1W time-frame (TF = 1W SPX500USD, SP1!, SPY, SPX etc. )
Macroeconomic Parameters
Effective Federal Funds Rate (FEDFUNDS)
Initial Claims (ICSA)
Civilian Unemployment Rate (UNRATE)
10 Year Treasury Constant Maturity Rate (DGS10)
Gross Domestic Product , 1 Decimal (GDP)
Trade Weighted US Dollar Index : Major Currencies (DTWEXM)
Consumer Price Index For All Urban Consumers (CPIAUCSL)
M1 Money Stock (M1)
M2 Money Stock (M2)
2 - Year Treasury Constant Maturity Rate (DGS2)
30 Year Treasury Constant Maturity Rate (DGS30)
Industrial Production Index (INDPRO)
5-Year Treasury Constant Maturity Rate (FRED : DGS5)
Light Weight Vehicle Sales: Autos and Light Trucks (ALTSALES)
Civilian Employment Population Ratio (EMRATIO)
Capacity Utilization (TOTAL INDUSTRY) (TCU)
Average (Mean) Duration Of Unemployment (UEMPMEAN)
Manufacturing Employment Index (MAN_EMPL)
Manufacturers' New Orders (NEWORDER)
ISM Manufacturing Index (MAN : PMI)
Artificial Neural Network (ANN) Training Details :
Learning cycles: 16231
AutoSave cycles: 100
Grid
Input columns: 19
Output columns: 1
Excluded columns: 0
Training example rows: 998
Validating example rows: 0
Querying example rows: 0
Excluded example rows: 0
Duplicated example rows: 0
Network
Input nodes connected: 19
Hidden layer 1 nodes: 2
Hidden layer 2 nodes: 0
Hidden layer 3 nodes: 0
Output nodes: 1
Controls
Learning rate: 0.1000
Momentum: 0.8000 (Optimized)
Target error: 0.0100
Training error: 0.010000
NOTE : Alerts added . The red histogram represents the bear market and the green histogram represents the bull market.
Bars subject to region changes are shown as background colors. (Teal = Bull , Maroon = Bear Market )
I hope it will be useful in your studies and analysis, regards.
Volume Price ROC Tracker and Shadow CandlesWhen price goes up on negative volume, then market is telling there is doubts in investors mind.
The SPX upside recent month was a on. Lower volume so, the rally in my view will not last. Read my articles on current market.
This very simple scripts shows if price drop or gain was on a upside volume or down side. It is a visual track on the candle reflecting the volume ROC overlapped as a price movement on the actual candle. So don't mistake it with a moving average. Red means volume was down even if price has gone up. Basically if a price goes up on a increase ROC volume then you can trust it. Otherwise it is likely that it won't last.
If you can improve on this idea, it would be great. I think there is not enough volume related scripts that diggs a bit deeper to describe the market behaviour in the future. After all all technical analysis are supposed to tell us about future price not just how it was in the past.
TradersAI - Test 3**** This is a TEST script only! Do NOT use on real money accounts! *****
***** Intended to be used in testing by invited_only members *****
***** If you want to participate in our testing using your paper trading account(s), send me a private message *****
TradersAI Test Script 1This is a script to test trading flows from an invite only script to one's trading view chart and then possibly to one of the connected brokers.
**** Do NOT use on real funds - this randomly triggers trades. Do NOT use on real money accounts. ******
TradersAI_UTBotCREDITS to @HPotter for the orginal code.
CREDITS to @Yo_adriiiiaan for recently publishing the UT Bot study based on the original code -
I just added some simple code to turn it into a strategy. Now, anyone can simply add the strategy to their chart to see the backtesting results!
While @Yo_adriiiiaan mentions it works best on a 4-hour timeframe or above, I am happy to share that this seems to be working on a 15-minute chart on e-mini S&P 500 Index (using the KeyValue setting at 10)! You can play around with the different settings, and may be you might discover even better settings.
Hope this helps. Btw, if any of you play with different settings and discover great settings for a specific instrument, please share them with the community here - it will be rewarded back multiple times!
Altsignals-Indicator PRO+ (lifetime)The Altsignals indicator combines various indicators together in an effort to predict accurate and non-bias money making signals. Altsignals Indicator takes out the contradiction so you don’t have to deal with the headaches when you decide to long or short.
There are institutions, whales, and algorithmic bots everywhere in this market, there’s no doubt you’re at a disadvantage. Altsignals Indicator is the secret weapon you need to give you an edge to win in this market.
All-in-one indicator
Supports all trading pairs
Enable Signal Notifications
Fair one-time fee
Risk management features
Works on all markets and all timeframes
Perfect for beginners and people with day-jobs
Common sense required while using this indicator.
Are you experiencing paralysis from analysis? Do you feel like some indicators contradict each other? Don’t know if its worth the risk? If you’re fairly new to trading, then this product is the right fit for you!
Altsignals Indicator is here replace traditional indicators, it does exactly the opposite of all the questions above, telling you exactly when to buy and when to sell, thus giving you the assurance you need to improve your odds of trading.
It takes all aspects into consideration, it utilises multiple indicators such as Divergences, Elliott Waves , Ichimoku , MACD , MACD Histogram, RSI , Stoch , CCI , Momentum, OBV, DIOSC, VWMACD, CMF and multiple EMAs before making a decision.
This PRO+ version has a MAJOR difference to the SLIM+ version.
PRO+ has about 1000 more lines of code and allows you to use multiple advanced indicators at the same time and with a single access.
We added many helpful panels and labels for it so backtesting can be done with ease.
Finally version 2 is out now!
It is now released from all of its bugs we had with custom timeframes, Heikin Ashi and Renko Charts.
Check below what was added and removed.
Added:
- Backtesting
- Labels
- Info Panel
- Bitmex Panel
- Automatic Trendlines
- TJ-Index
- Custom Agg
- Fibonacci Customization
- EMA Customization
Removed:
- SAFE FOMO
- Custom Timeframes
- ZigZag
I have also changed the settings menu with a slightly new design and new default settings.
Altsignals-Indicator SLIM+ (lifetime)The Altsignals indicator combines various indicators together in an effort to predict accurate and non-bias money making signals. Altsignals Indicator takes out the contradiction so you don’t have to deal with the headaches when you decide to long or short.
There are institutions, whales, and algorithmic bots everywhere in this market, there’s no doubt you’re at a disadvantage. Altsignals Indicator is the secret weapon you need to give you an edge to win in this market.
All-in-one indicator
Supports all trading pairs
Enable Signal Notifications
Fair one-time fee
Risk management features
Works on all markets and all timeframes
Perfect for beginners and people with day-jobs
Common sense required while using this indicator.
Are you experiencing paralysis from analysis? Do you feel like some indicators contradict each other? Don’t know if its worth the risk? If you’re fairly new to trading, then this product is the right fit for you!
Altsignals Indicator is here replace traditional indicators, it does exactly the opposite of all the questions above, telling you exactly when to buy and when to sell, thus giving you the assurance you need to improve your odds of trading.
It takes all aspects into consideration, it utilises multiple indicators such as Divergences, Elliott Waves , Ichimoku , MACD , MACD Histogram, RSI , Stoch , CCI , Momentum, OBV, DIOSC, VWMACD, CMF and multiple EMAs before making a decision.
Simply choose a Power level, set your Take profits and Stop Loss and enjoy trading.
Crypto FOMO Strategy (monthly-access)PLEASE READ THE ENTIRE POST BEFORE PURCHASING & USING THE FOMO INDICATOR. Saves you and me some time in emails and messages. :)
This is the NEW MONTHLY ACCESS Version of the Crypto FOMO Strategy
Please check the links at the bottom of this post, so you find the way to our shop.
1 Month access is set at $25
10% Disount --> "FOMO25"
Any question, DM me here or on Twitter , check for link on the bottom.
The FOMO Buy Sell Indicator is a very specific strategy, cut down to its roots and made perfect for the volatile crypto market.
Many indicators focus only on one aspect, one side, one specific rule. As you know, this is not how life, the market or anything else works.
FOMO combines many different aspects at the same time, scans multiple other indicators and comes to a conclusion based on over 950 lines of code.
It is based on Divergences, Elliott Waves , Ichimoku , MACD , MACD Histogram, RSI , Stoch , CCI , Momentum, OBV, DIOSC, VWMACD, CMF and multiple EMAs.
Every single aspect is weighted into the decision before giving out an indication.
Most buy/sell indicators FAIL because they try to apply the same strategy to every single chart, which
are as individual as humans.
To conquer this problem, FOMO has a wide range of settings and variables which can be easily
modified.
To make it a true strategy, FOMO has as well settings for Take Profit Points, Multiple Entries and Stop Losses. Everything with an Alert Feature of course.
I know from experience that many people take one indicator and are simply too LAZY to add multiple indicators to make a rational choice.
The result of that is that they lose money, by following blatantly only one indicator.
FOMO has additional 7 indicators, perfect for the crypto market, which can be turned on and off.
FOMO Signals Settings
“Show Signals?” - On/Off to show the Buy/Sell Signals. “Aggressiveness” - Increase to make the signals less aggressive
and decrease to make them more aggressive.
“Show Custom FOMO Timeframe?” - On/Off to show FOMO Signals of a different timeframe in addition to the normal ones.
“Custom FOMO Timeframe?” - Choose the timeframe for the custom FOMO signals.
“Use Safe FOMO?” - On/Off to show only “safe” (less but more exact) FOMO signals.
“Safe FOMO Sells” - Settings for the “safe” FOMO Sell Signals. Decrease number for “less safe” Signals.
Increase number for “more safe” Signals.
“Safe FOMO Buys” - Settings for the “safe” FOMO Buy Signals. Decrease number for “more safe” Signals.
Increase number for “less safe” Signals.
FOMO Strategy Settings
“Take Profit 1 ” - On/Off to show TP1 points.
“Take Profit After %” - Set the percentage after which TP1 is
active.
“Take Profit 2 ” - On/Off to show TP2 points.
“Take Profit 2 After %” - Set the percentage after which TP2 is active.
“Take Profit 3 ” - On/Off to show TP3 points.
“Take Profit 3 After %” - Set the percentage after which TP3 is
active.
“Second Entry” - On/Off to show Second Entry points.
“Second Entry After %” - Set the percentage after which Second Entry is active.
“Third Entry ” - On/Off to Third Entry points.
“Third Entry After %” - Set the percentage after which Third
Entry is active.
“Stop Loss ” - On/Off to show Stop Loss points.
“Take Profit After %” - Set the percentage after which Stop Loss is active.
The FOMO Lifeguard is a special feature made to cancel out the “noice” of the signals and show only signals with a great technical significance.
For this FOMO uses the default settings of +7 and - 7. This references to an index value of multiple settings of almost all indicators used in this script.
+7 cuts out all sell signals below the index value of 7.
- 7 cuts out all buy signals above the index value of - 7.
Using the FOMO Lifeguard is a key element for a sustainable and profitable strategy.
As the normal FOMO Signals, the Lifeguard Signals are also bound to the “Aggressiveness”. Should the cut out of signals with the Lifeguard on be too big, try adjusting the “Aggressiveness”.
With this, once can choose and make this indicator PERFECT for his own strategy and trading style. Day Traders would use no “Lifeguard” and aggressive signals.
Swing Traders would use “Lifeguard” and aggressive signals.
To make the life of the FOMO user even easier, I have added all adjustable Take Profit Points, Multiple entry points and Stop Loss points.
Simply choose how many Take Profit points you would like to have and choose the percentage after which you would like to see the Take Profit point appear on the chart and notify you to take profits.
Are you a Trader who likes multiple entries? Also no problem with FOMO. Select how many additional entries you would like to have and after how many percent you would like them to appear on the chart and remind you of adding to the position.
What would a Strategy be without a Stop Loss? Same settings apply here as on the TPs and MEs .
Crypto Modified Indicators
“Show Divergences?” - On/Off to show Divergences on the Chart based on the data of 10 different indicators.
“Show Custom Divergences?” - On/Off to show Divergences on the chart of a custom timeframe.
“Custom Divergence Timeframe?” - Choose the Timeframe for which the Custom Divergences should appear on the chart.
“Show Oversold/bought?” - On/Off to change the colour of the chart in Oversold/bought conditions.
“Oversold/bought value?” - Choose a value for which the chart is Oversold/bought.
“Show Fibonacci Levels?” - On/Off to show automatic Fibonacci Levels.
“Fibonacci Lookback Lenght” - This value states how many candles from right now are taken into account to paint the Fibonacci Levels.
“Fibonacci Lookback Lenght” - Choose a custom Timeframe that should be used to paint the Fibonacci Levels.
Crypto Modified Indicators 2
“Show EMAs?” - On/Off to show three EMAs on the chart, after the example of @Teddycleps
“EMA Lenght 1” - Choose a value for the first EMA Lenght
“EMA Lenght 2 ” - Choose a value for the second EMA Lenght.
“EMA Lenght 3” - Choose a value for the third EMA Lenght.
The area between the first and third EMA is filled. Is EMA1 above 21, it’s filled green. Is it below, it’s filled red.
“Show Ichimoku? ” - On/Off to show Ichimoku on the chart.
“Show Tenkin?” - On/Off to show Tenkin on the chart.
“Tenkin” - Set the lenght of the Tenkin.
“Show Kijun?” - On/Off to show Kijun on the chart.
“Kijun” - Set the lenght of the Kijun.
“Show Senkou?” - On/Off to show the Senkou on the chart. “Senkou” - Set the lenght of the Senkou.
“Displacement” - Set the value of the Displacement.
“Show ZIG ZAG Lines?” - On/Off to show ZigZag Lines on the chart, used to identify short-term trends and EW counts.
“ZZ Lenght 1” - Set the first lenght of the ZigZag Lines.
“ZZ Lenght 2” - Set the second lenght of the ZigZag Lines.
FOMO without any doubt has Custom Alerts for all Signals that it is painting on the chart. This goes for the “Normal Signals” as well as for the “Lifeguard Signals”.
One can even choose to receive custom notifications for Take Profit points, Multiple Entry points and the Stop Loss points.
The signals appear on the chart DURING the candle, not at the end of the candle. Therefore, the alerts do this as well. These appear during the candle.
Here we can see all of the possible Alerts that can be chosen to be displayed. In total it is 30 different custom alerts, based on what the trader is looking for and how he is trading.
Personally, I have 10-15 coins that I trade the most and for these I have custom notifications, mostly though only the SAFE FOMO Buy and Sell Signals.
To activate Alerts for FOMO
1) Go to the “ALERT” icon on the top tool bar of your Tradingview.
2) Select “CONDITION” as “—Crypto FOMO Strategy—“
3) Then choose ONE condition from the list of conditions.
4) On “OPTIONS” you can set how many times it appears, I have “Once per Bar”.
4.1) If you want to make sure that the signal is truly there and not just a condition for a second during the candle, choose “ONCE PER BAR CLOSE”.
5) “Expiration Time” sets the time until the alert expires. PRO users have no expiration for alerts.
6) “Alert Actions” give you a row of choices what happens and how you want to be notified.
7) “Message” is the message that you receive inside the notification.
AFTERWORD/DISCLAIMER
FOMO has been created after my goal to #MakeCryptoProfessionalAgain. Every aspect of it has its own and very specific use, which traders have shown to find useful in their trading.
This Indicator is meant to help new and experienced traders to understand the various aspects of this market and access all of the most important and most commonly used tools, with JUST ONE CLICK.
FOMO should be used responsibly and treated as an indicator. Signals, scripts, algorithms can NEVER be 100% exact. It is up to the trader to make a well thought and educated decision, wether to follow a signal or not. Our brains are way more advanced than any indicator and algorithm.
I advise especially for this reason to have not just the signals turned on. Please do not use the SAME settings for each chart. Look which Aggressiveness and Lifeguard Settings fit your chart the most, you will be amazed how well some charts work with FOMO.
FOMO should NOT make you FOMO into a trade anymore. It should teach you to make more educated decisions and especially for margin trading reduce the risk of liquidation.
Should you have problems with being liquidated multiple times, I advise to use the “STOP LOSS” function.
Most importantly, enjoy the indicator and trading in general.
Tick ChangeTo detect volatility change in any given timeframe. Best used at 5/15/60/240 TF
Adjust parameter accordingly
CL/ZL = 100
DJ/NASDAQ/SPX = 1
Mix1 : Ema Cross + Trend Channel [Gu5]Based on Trend Channel
Ema-crossover is added
Crossing alerts, only on trend
Basado en mi anterior indicador, Trend Channel
Se agrega Cruce de Medias Moviles (Ema-crossover)
Las alertas solo son en favor a la tendencia
El valor de SMA Range es arbitrario (No Backtesting). Cambia la amplitud de canal que determina cuando es rango (barras amarillas por estar muy cerca del SMA200, sin tendencia definida)
Range Multiplier adapta el indicador a distintos mercados
//Setting recommended for SMA Range
//BTCUSD = 100
//EURUSD = 1000
//SPX = 100
//ETHUSD = 10
Si te fue útil este indicador, puedes comprarme una cerveza ;)
ADL-SPX Rank Difference-Buschi
English:
An expansion of the Advance Decline Line of the NYSE. It can be interesting to compare the Advance Decline Line with the corresponding benchmark index. I therefore made a ranking (0 to 100) based on the performance over the last days (default: 21 days). The difference is the target figure and ranges between -100 (bearish divergence) to +100 (bullish divergence).
Deutsch:
Eine Erweiterung der Advance Decline Line der NYSE. Oft möchte man den Verlauf der Advance Decline Line mit dem zugehörigen Leitindex vergleichen. Daher habe ich für beide ein Ranking (0 bis 100) erstellt auf Basis des Verlaufs über die letzten Tage (Standardwert: 21 Tage). Die Differenz stellt dabei die Zielgröße dar und schwankt zwischen -100 (bärische Divergenz) und +100 (bullische Divergenz).