Davin's 10/200MA Pullback on SPY Strategy v2.0Strategy:
Using 10 and 200 Simple moving averages, we capitalize on price pullbacks on a general uptrend to scalp 1 - 5% rebounds. 200 MA is used as a general indicator for bullish sentiment, 10 MA is used to identify pullbacks in the short term for buy entries.
An optional bonus: market crash of 20% from 52 days high is regarded as a buy the dip signal.
An optional bonus: can choose to exit on MA crossovers using 200 MA as reference MA (etc. Hard stop on 50 cross 200)
Recommended Ticker: SPY 1D (I have so far tested on SPY and other big indexes only, other stocks appear to be too volatile to use the same short period SMA parameters effectively) + AAPL 4H
How it works:
Buy condition is when:
- Price closes above 200 SMA
- Price closes below 10 SMA
- Price dumps at least 20% (additional bonus contrarian buy the dip option)
Entry is on the next opening market day the day after the buy condition candle was fulfilled.
Sell Condition is when:
- Prices closes below 10 SMA
- Hard stop at 15% drawdown from entry price (adjustable parameter)
- Hard stop at medium term and long term MA crossovers (adjustable parameters)
So far this strategy has been pretty effective for me, feel free to try it out and let me know in the comments how you found :)
Feel free to suggest new strategy ideas for discussion and indicator building
E-signal
Candlestick Pattern Criteria and Analysis Indicator█ OVERVIEW
Define, then locate the presence of a candle that fits a specific criteria. Run a basic calculation on what happens after such a candle occurs.
Here, I’m not giving you an edge, but I’m giving you a clear way to find one.
IMPORTANT NOTE: PLEASE READ:
THE INDICATOR WILL ALWAYS INITIALLY LOAD WITH A RUNTIME ERROR. WHEN INITIALLY LOADED THERE NO CRITERIA SELECTED.
If you do not select a criteria or run a search for a criteria that doesn’t exist, you will get a runtime error. If you want to force the chart to load anyway, enable the debug panel at the bottom of the settings menu.
Who this is for:
- People who want to engage in TradingView for tedious and challenging data analysis related to candlestick measurement and occurrence rate and signal bar relationships with subsequent bars. People who don’t know but want to figure out what a strong bullish bar or a strong bearish bar is.
Who this is not for:
- People who want to be told by an indicator what is good or bad or buy or sell. Also, not for people that don’t have any clear idea on what they think is a strong bullish bar or a strong bearish bar and aren’t willing to put in the work.
Recommendation: Use on the candle resolution that accurately reflects your typical holding period. If you typically hold a trade for 3 weeks, use 3W candles. If you hold a trade for 3 minutes, use 3m candles.
Tldr; Read the tool tips and everything above this line. Let me know any issues that arise or questions you have.
█ CONCEPTS
Many trading styles indicate that a certain candle construct implies a bearish or bullish future for price. That said, it is also common to add to that idea that the context matters. Of course, this is how you end up with all manner of candlestick patterns accounting for thousands of pages of literature. No matter the context though, we can distill a discretionary trader's decision to take a trade based on one very basic premise: “A trader decides to take a trade on the basis of the rightmost candle's construction and what he/she believes that candle construct implies about the future price.” This indicator vets that trader’s theory in the most basic way possible. It finds the instances of any candle construction and takes a look at what happens on the next bar. This current bar is our “Signal Bar.”
█ GUIDE
I said that we vet the theory in the most basic way possible. But, in truth, this indicator is very complex as a result of there being thousands of ways to define a ‘strong’ candle. And you get to define things on a very granular level with this indicator.
Features:
1. Candle Highlighting
When the user’s criteria is met, the candle is highlighted on the chart.
The following candle is highlighted based on whether it breaks out, breaks down, or is an inside bar.
2. User-Defined Criteria
Criteria that you define include:
Candle Type: Bull bars, Bear bars, or both
Candle Attributes
Average Size based on Standard Deviation or Average of all potential bars in price history
Search within a specific price range
Search within a specific time range
Clarify time range using defined sessions and with or without weekends
3. Strike Lines on Candle
Often you want to know how price reacts when it gets back to a certain candle. Also it might be true that candle types cluster in a price region. This can be identified visually by adding lines that extend right on candles that fit the criteria.
4. User-Defined Context
Labeled “Alternative Criteria,” this facet of the script allows the user to take the context provided from another indicator and import it into the indicator to use as a overriding criteria. To account for the fact that the external indicator must be imported as a float value, true (criteria of external indicator is met) must be imported as 1 and false (criteria of external indicator is not met) as 0. Basically a binary Boolean. This can be used to create context, such as in the case of a traditional fractal, or can be used to pair with other signals.
If you know how to code in Pinescript, you can save a copy and simply add your own code to the section indicated in the code and set your bull and bear variables accordingly and the code should compile just fine with no further editing needed.
Included with the script to maximize out-of-the-box functionality, there is preloaded as alternative criteria a code snippet. The criteria is met on the bull side when the current candle close breaks out above the prior candle high. The bear criteria is met when the close breaks below the prior candle. When Alternate Criteria is run by itself, this is the only criteria set and bars are highlighted when it is true. You can qualify these candles by adding additional attributes that you think would fit well.
Using Alternative Criteria, you are essentially setting a filter for the rest of the criteria.
5. Extensive Read Out in the Data Window (right side bar pop out window).
As you can see in the thumbnail, there is pasted a copy of the Data Window Dialogue. I am doubtful I can get the thumbnail to load up perfectly aligned. Its hard to get all these data points in here. It may be better suited for a table at this point. Let me know what you think.
The primary, but not exclusive, purpose of what is in the Data Window is to talk about how often your criteria happens and what happens on the next bar. There are a lot of pieces to this.
Red = Values pertaining to the size of the current bar only
Blue = Values pertaining or related to the total number of signals
Green = Values pertaining to the signal bars themselves, including their measurements
Purple = Values pertaining to bullish bars that happen after the signal bar
Fuchsia = Values pertaining to bearish bars that happen after the signal bar
Lime = Last four rows which are your percentage occurrence vs total signals percentages
The best way I can explain how to understand parts you don’t understand otherwise in the data window is search the title of the row in the code using ‘ctrl+f’ and look at it and see if it makes more sense.
█ [b}Available Candle Attributes
Candle attributes can be used in any combination. They include:
[*}Bodies
[*}High/Low Range
[*}Upper Wick
[*}Lower Wick
[*}Average Size
[*}Alternative Criteria
Criteria will evaluate each attribute independently. If none is set for a particular attribute it is bypassed.
Criteria Quantity can be in Ticks, Points, or Percentage. For percentage keep in mind if using anything involving the candle range will not work well with percentage.
Criteria Operators are “Greater Than,” “Less Than,” and “Threshold.” Threshold means within a range of two numbers.
█ Problems with this methodology and opportunities for future development:
#1 This kind of work is hard.
If you know what you’re doing you might be able to find success changing out the inputs for loops and logging results in arrays or matrices, but to manually go through and test various criteria is a lot of work. However, it is rewarding. At the time of publication in early Oct 2022, you will quickly find that you get MUCH more follow through on bear bars than bull bars. That should be obvious because we’re in the middle of a bear market, but you can still work with the parameters and contextual inputs to determine what maximizes your probability. I’ve found configurations that yield 70% probability across the full series of bars. That’s an edge. That means that 70% of the time, when this criteria is met, the next bar puts you in profit.
#2 The script is VERY heavy.
Takes an eternity to load. But, give it a break, it’s doing a heck of a lot! There is 10 unique arrays in here and a loop that is a bit heavy but gives us the debug window.
#3 If you don’t have a clear idea its hard to know where to start.
There are a lot of levers to pull on in this script. Knowing which ones are useful and meaningful is very challenging. Combine that with long load times… its not great.
#4 Your brain is the only thing that can optimize your results because the criteria come from your mind.
Machine learning would be much more useful here, but for now, you are the machine. Learn.
#5 You can’t save your settings.
So, when you find a good combo, you’ll have to write it down elsewhere for future reference. It would be nice if we could save templates on custom indicators like we can on some of the built in drawing tools, but I’ve had no success in that. So, I recommend screenshotting your settings and saving them in Notion.so or some other solid record keeping database. Then you can go back and retrieve those settings.
#6 no way to export these results into conditions that can be copy/pasted into another script.
Copy/Paste of labels or tables would be the best feature ever at this point. Because you could take the criteria and put it in a label, copy it and drop it into another strategy script or something. But… men can dream.
█ Opportunities to PineCoders Learn:
1. In this script I’m importing libraries, showing some of my libraries functionality. Hopefully that gives you some ideas on how to use them too.
The price displacement library (which I love!)
Creative and conventional ways of using debug()
how to display arrays and matrices on charts
I didn’t call in the library that holds the backtesting function. But, also demonstrating, you can always pull the library up and just copy/paste the function out of there and into your script. That’s fine to do a lot of the time.
2. I am using REALLY complicated logic in this script (at least for me). I included extensive descriptions of this ? : logic in the text of the script. I also did my best to bracket () my logic groups to demonstrate how they fit together, both for you and my future self.
3. The breakout, built-in, “alternative criteria” is actually a small bit of genius built in there if you want to take the time to understand that block of code and think about some of the larger implications of the method deployed.
As always, a big thank you to TradingView and the Pinescript community, the Pinescript pros who have mentored me, and all of you who I am privileged to help in their Pinescripting journey.
"Those who stay will become champions" - Bo Schembechler
DoubleRSI fast/slow signal buy/sell with alert Relative StrengthA combination of two Relative strength index. One fast and one slow line. In a system, this indicator can serve as an additional confirmation.
For example, for a long entry:
slow RSI cross above 50 level and fast RSI cross above 70 level. then check volume and use another indicator such as a MACD for extra confirmation
For example, for a short entry:
slow RSI cross below 50 and fast RSI cross below 30 level. then check volume and use another indicator such as a MACD for confirmation
An alarm function has also been added.
the following settings are possible:
- Source
- Length
- Color
I do not recommend to use this indicator alone.
have fun using this simple and helpful tool.
BUY/SELL arvwis STORMASBuy/sell indikatorius, geriausia naudoti ant didesnių timefreimų, bet tinka ir ant mažesnių
Signal Moving Average [LuxAlgo]The following script returns a moving average designed to be used as a signal line in a moving average crossover system. The moving average will diverge from the price during ranging markets and reach the value of a regular moving average during trending markets.
Settings
Length: Moving average period
Src: Source input of the indicator
Usage
Moving average crossover strategies often rely on a "signal" line, a slower moving average used to determine a general trend. This signal line is paired with a faster moving average to filter out potential whipsaw trades that would have been given from crosses between the regular price and the signal line.
The proposed indicator will avoid crossing the price by diverging from it during more ranging periods, thus effectively reducing the number of crosses produced between the price and the signal line.
The color of the area between the price and the signal line is determined by the position of the price relative to the signal line, with a green color indicator a price superior to the signal line.
The color of the signal line, however, is taking into account whether market is trending or ranging, only changing once the market is trending.
The chart above shows the cumulated number of crosses between the price and the signal line (green) and a regular simple moving average of the same period (red) on AMD 15m, a lowered number of crosses can effectively reduce the impact of frictional costs introduced by whipsaw trades.
Tutporial Pedia (Signal buy & Sell)Untuk mempermudah kita dalam bermain dan memahami Signal Trade View Rate 98 %
VIPThis indicator is using the modified "SSS".
This strategy uses combined indicators to create LONG entry points, the strategy was first found by saudALThaidy.
How to use: Open your asset and pick a timeframe between 5min and 2hours (recommended: 30min, 45min), the strategy will give entry points itself, you can monitor and take profit manually(recommended), or you can use the exit setup.
exit setup:
Take Profit : close the trade and take profit after the specified percentage from the entry point gets hit.
Use Stop Percentage : if false, trade will be closed if it gets below MA line, if true it will use the next set up.
StopLose Percentage : specify a percentage to close the trade if the asset price goes below it.
Important Notes:
As saudALThaidy states that the strategy must be used with -heiken ashi- candles for the best result.
for best use of the strategy, use (Take Profit = 1,Use Stop Percentage=false) to get every trade, and take profit manually when ever you see the best.
For any notes on the strategy to be edited, or for another strategies ideas please comment.
Squeeze Momentum Indicator [LazyBear] added Alerting + webhookA modified version of Squeeze Momentum Indicator visualizing on Price Chart.
author: @LazyBear, modified by @KivancOzbilgic, and by @dgtrd
I took in all of the information as the script below is based on the V2 Script that @LazyBear posted and then added Alerting based on the math and the conditions that @dgtrd added.
Per the description here:
The Squeeze Indicator measures the relationship between Bollinger Bands and Keltner's Channels to help identify consolidations and signal when prices are likely to break out (whether up or down).
The Squeeze Indicator finds sections of the Bollinger Bands which fall inside the Keltner's Channels, and in this case, the market is said to be in a squeeze (indicator turns off, displayed with grey diamond shapes in this study).
When the volatility increases, so does the distance between the bands. Conversely, when the volatility declines, the distance also decreases, and in such cases, the squeeze is said to be released (indicator turns on, displayed with triangle up or triangle down shapes)
Taking the above information and what was in the script was able to base the alert conditions:
So when the condition:
Squeeze On or No Squeeze = In Squeeze
Squeeze Off = Squeeze Release Long or Squeeze Release Long based off conditions.
There are 2 separate alert Types.
1. App, Pop-up, eMail, play sound and Send email to SMS
2. It Is dedicated to Webhook for your various applications.
Alerting Options
i.imgur.com
App Notification
i.imgur.com
i.imgur.com
Webhook test into Discord
i.imgur.com
Multi Type RSI [Misu]█ This Indicator is based on RSI ( Relative Strength Index ) & multiple type of MA (Moving Average) to show different variations of RSI.
The relative strength index (RSI) is a momentum indicator used in technical analysis to evaluate overvalued or undervalued conditions in the price of that security.
█ Usages:
The purpose of this indicator is to obtain the RSI calculated with different MAs modes instead of the classic RMA.
The red and green zones indicate the oversold and overbought zones.
Buy or sell signals are marked by the green and red circles
We have 2 different signal modes : when the different size RSIs cross and when the fast RSI crosses the extreme bands.
Alerts are setup.
█ Parameters:
Lenght RSI: The lenght of the RSI. (14 by default)
RSI MA Type: The type of MA with which the rsi will be calculated. ("SMA", "EMA", "SMMA (RMA)", "WMA", "VWMA")
Fast Lenght MA: The fast lenght smoothing MA.
Slow Lenght MA: The Slow lenght smoothing MA.
Lower Band: The lenght of the lower band. (25 by default)
Upper Band: The lenght of the upper band. (75 by default)
Signal Type: The mode with which buy and sell signals are triggered. ("Cross 2 Mas", "Cross Ma/Bands")
Hodrick-Prescott MACD [Loxx]Hodrick-Prescott MACD is a MACD indicator using a Hodrick-Prescott Filter.
What is Hodrick–Prescott filter?
The Hodrick–Prescott filter (also known as Hodrick–Prescott decomposition) is a mathematical tool used in macroeconomics, especially in real business cycle theory, to remove the cyclical component of a time series from raw data. It is used to obtain a smoothed-curve representation of a time series, one that is more sensitive to long-term than to short-term fluctuations. The adjustment of the sensitivity of the trend to short-term fluctuations is achieved by modifying a multiplier Lambda.
The filter was popularized in the field of economics in the 1990s by economists Robert J. Hodrick and Nobel Memorial Prize winner Edward C. Prescott, though it was first proposed much earlier by E. T. Whittaker in 1923.
There are some drawbacks to use the HP filter than you can read here: en.wikipedia.org
Included
Bar coloring
3 types of signals
Alerts
Loxx's Expanded Source Types
MACD + RSI with Trade SignalsThis indicator by default comes with the MACD shown but can be switched to show the RSI instead. Settings for each indicator can also be customized as well as Buy/Sell signals given based on pull back crossovers that follow the 200 EMA of the price Chart. There's an above/below middle fill option you can use but I tend not to but I know some traders like to see when an oscillator is above/below the middle and use it as a trend diretion. By the way, the fourth setting for the MACD (which is 2 by default) is the size of the histogram.
Buy Signal = Price is above the 200 EMA. Current or previous MACD or RSI line is/was below middle line and now crossed above the signal line.
Sell Signal = Price is below the 200 EMA. Current or previous MACD or RSI line is/was above middle line and now crossed below the signal line.
There are alerts for each signal as well (MACD and RSI, both buy and sell).
Feel free to leave a comment regarding issues or suggestions for this indicator or ideas for the next one I should do :)
Lune Market Analysis Premium- Version 0.9 -
Lune Algo was developed and built by Lune Trading, utilizing years of their trading expertise. This indicator works on all stocks, cryptos, indices, forex, futures , currencies, ETF's, energy and commodities. All the tools and features you need to assist you on your trading journey. Best of all, Lune Algo is easy to use and many of our tools and strategies have been thoroughly backtested thousands of times to ensure that users have the best experience possible.
Overview
Trade Dashboard—Provides information about the current market conditions, Such as if the market is trending up or down, how much volatility is in the market and even displays information about the current signal.
Trade Statistics—This tool gives you a breakdown of the Statistics of the current selected strategy based on backtests. It tells you the percentage of how often a Take Profit or Stop Loss was hit within a specific time period. Risk and Trade management is very important in trading, and can be the difference between a winning and losing strategy. So we believe that this was mandatory.
Current Features:
Advanced Buy and Sell Signals
Exclusive built-in Strategies
Lune Confidence AI
EK Clouds
Reversal Bands
Vray (Volume Ray)
Divergence Signals
Reversal Signals
Support/Resistance Zones
Built-in Themes
Built-in Risk Management system (take profit/stop loss)
Trade Statistics
Trade Assistance
Trade Dashboard
Advanced Settings
+ More coming soon, Big plans!
Features Breakdown:
Lune Confirmation—Used to help you confirm your trades and trend direction. It uses unique calculations, and its settings can be adjusted to allow traders to adapt the settings to fit their trading style.
Lune Confidence AI—All strategies are equipped with our exclusive built-in Confidence AI. This feature tells you how much confluence there is in a trade. It uses a rating system where signals are given a number from 0 to 5. A rating of 0 indicates that there is not a lot of confluence or confidence in the signal, while a rating of 5 indicates that there is a lot of confidence in the trade. This feature is not perfect and will be improved overtime.
Support/Resistance Zones—Calculates the most important support/resistance levels based on how many times a level has been used as support or resistance. Traders also refer to these as supply and demand zones and key levels.
EK Clouds—Used to further help you confirm trend and was optimized to also be used as support and resistance. This feature is powered by custom moving averages.
Reversal Bands—An optimized and improved version of the infamous Bollinger Bands. When price action takes place within the Reversal Bands it usually indicates that the current symbol is overextended and a reversal is possible.
Vray—Also Known as "Volume Ray", Assists you in better visualizing volume. This helps you find key levels and areas of support that you wouldn't be able to see otherwise. It helps you trade like the institutions.
This indicator's signals DO NOT REPAINT.
If you are using this script you acknowledge past performance is not necessarily indicative of future results and there are many more factors that go into being a profitable trader.
Adaptive ATR Keltner Channels [Loxx]Adaptive ATR Channels are adaptive Keltner channels. ATR is calculated using a rolling signal-to-noise ratio making this indicator flex more to changes in price volatility than the fixed Keltner Channels.
What is Average True Range (ATR)?
The average true range (ATR) is a technical analysis indicator, introduced by market technician J. Welles Wilder Jr. in his book New Concepts in Technical Trading Systems, that measures market volatility by decomposing the entire range of an asset price for that period.1
The true range is taken as the greatest of the following: current high less the current low; the absolute value of the current high less the previous close; and the absolute value of the current low less the previous close. The ATR is then a moving average, generally using 14 days, of the true ranges.
What are Keltner Channel (ATR)?
Keltner Channels are volatility-based bands that are placed on either side of an asset's price and can aid in determining the direction of a trend.
The Keltner channel uses the average-true range (ATR) or volatility, with breaks above or below the top and bottom barriers signaling a continuation.
No-lose trading targets (Based on MFI) By Mustafa ÖZVERThis code shows expected reaction target prices after sudden moving based on MFI . Red area means the price is on overbought area, green area means the price is on oversold area. If you see red area under price, you can make short option to next to the horizontal beginning price of red area. If you see green area over price, you can make long option to next to the horizontal beginning price of green area.
When this code works
- The green area starts where mfi value is on oversold
- The red area starts where mfi value is on overbought
Of course, this code may be failed, do not forget the target may never come. But hopefully price will cross over the target.
And you (as developers) can develop this code by using anything instead of mfi to get up-down target prices.
But only this values can not guarantee good results for trading. BE CAREFUL
Wolf EMA & OHL & SIGNALSWolf EMA & OHL & SIGNALS
this indicator is mainly used for fast trading techniques (scalping). provides various tools for comprehensive trend analysis.
5 EMAs are used to have possible market entry or exit signals.
EMA
Thanks to the combination of the EMAs of different timeframes,
you can immediately get an idea of the resistances or supports
of the higher timeframes.
HOL
Lines are drawn on the right side indicating the maximum, minimum and opening
of the day, past day, week and past week respectively.
These levels are excellent as price acceleration points.
SIGNALS
There are three types of signals that are monitored by this indicator:
- Shimano
This signal is generated if the price remains compressed between two EMAs, more precisely between the third and the fifth, at the point where the price breaks one of these EMAs there can be a strong price movement.
- Viagra
This signal is generated if the price remains below the second EMA for a long time without ever closing above / below, at the point where it closes by climbing over the EMA there may be a change in trend.
-Bud
This signal is generated if a positive candle is formed and subsequently at least two that close within the high and low of the positive candle. Where the price breaks through the high of the positive candle is a great entry point.
Trend IdentifierTrend Identifier for 1D BTC.USD
It smoothens a closely following moving average into a polynomial like plot.
And assumes 4 stage cycles based on the first and second derivatives.
Green: Bull / Exponential Rise
Yellow: Distribution
Red: Bear / Exponential Drop
Blue: Accumulation
Red --> Blue --> Green: indicates the start of a bull market
Green --> Yellow --> Red: indicates the start of a bear market
Green --> Yellow: Start of a distribution phase, take profits
Red --> Blue: Start of a accumulation phase, DCA
Directional ExpectancyThe Directional Expectancy tool is a volatility based indicator, It is a Directional Correlation to the Volatility given by the Historical Volatility Percentile.
We calculate this correlation function then visually color plot it across a moving average of the HVP.
Use this tool to not only gauge the Historical Volatility that is present as well as the Directional Expectancy of the volatility and price!
ProWaves - [Soldi]ProWaves
Introducing the latest and greatest tool in the DynaPro Trading Tools! ProWaves is a multi timeframe precision trend tool to help traders identify the waves of the market and trade the convergence, exhaustion points, continuation points of multiple timeframes.
By default you will have a 15m, 1h and 2h Wave on your indicator - this is completely customizable by the user! You can choose up to 3 higher timeframes to display the underlaying wave trend.
How Do I Enter Trades?
To bring ProWaves into a full trading system someone could easily use we have to make a trade trigger system for potential entries - an original and unique Trend Bar system to easily signal a trader that there is an entry present. These trend bars use 2 sensitive weighted moving averages based off the HL2 of the candle, we offset them to create a ribbon like effect to help eliminate any false signals
Include this in your own trading strategy or compile it with DynaPro's other institutional caliber tools!
To use ProWaves effectively you will want to understand wave theory first
This indicator is based off the idea of Elliot wave and fractal cycles of the market, to really understand what this indicator is reading you will need to understand what Elliot Wave is along with fractal cycles in the markets.
What Are The Waves Based On
The waves are primarily a Correlation function to make an oscillated value of "trend", by doing so and measuring this across multiple timeframes we are able to gain a sense of clarity on the tops and bottoms of the markets as well as the trends that take place in between!
NOTE
When the Waves are above/below - 0.5/-0.5 then the wave is in an area of significance for either a reversal or to influence a trend - couple this with the precision of the Trend Bars system then you have a great trading system!
TUE ADX/MACD Confluence V1.0The ADX and MACD confluence can be a powerful predictor in stock movements. This script will help you find those confluences in an easy to understand visual manner.
It includes Buy and Sell signals for detected confluences, and will show colored candles to help you determine when to exit a trade. When the candles turn to white that means the detected confluence is no longer in play and you may want to consider a trailing stop loss.
The Buy and Sell signals will display on the first occurrence of each confluence.
It's important to understand that both of these are lagging indicators, but with a careful attention to your stoploss you can easily generate a positive profit factor.
This code is provided open source and you're free to use it for any purpose other than resale.
SIVE 2.0 - [Soldi]SIVE 2.0 IS FINALLY HERE, after the long awaited update we are finally able to bring to you SIVE 2.0!
SIVE 1.0 (Systematic Institutional Volatility Expansion) brought a whole new approach to the algorithm and retail trading game on TradingView. Never before have you had access to a quantitative institutional approach like this, after years in development and testing we finally brought SIVE 1.0 to market. With very very high demand, support and so much positive feedback we knew that what we've created really hit the mark for so many traders!
What is SIVE?
SIVE as stated above stands for, Systematic Institutional Volatility Expansion. What this means is we have a highly effective system that reads what institutional algorithms are proven to be looking at. While only providing alerts during periods where Volatility is Expanding
We don't shy away from volatility here, that is where the bread and butter lays. volatility is a double edged sword that not many people know how to effectively use to their advantage. Simply put, because they are told in their retail trading that volatility is risky, and that you should stay away from volatile products. I say embrace it with the right tools.
What Has Changed?
At the core, SIVE 2.0 brings more efficient calculations to the volatility modelling as well as the triggering of trades!
Trend Scalper - This is a sub-set strategy we have included, what it measures is 'Super Trend' with a deviation of 7 and the MTI ribbon crosses. This is to be used as a way to scalp and trade the momentum of the market. I am aware that another brand/community has put this out as a paid feature to their algorithm. Since they didn't want to credit me for my contribution I decided to release it for free and also add it here. This is listed in my scripts as a free to use access.
Volatility Confluence - We have now also added a feature where you can choose how many volatility models you want to be aligned before SIVE calls an alert. There are a total of 9 models we have included, example. You choose 3 'Volatility Confluence', this means that SIVE will only call alerts when 3 of those 9 models agree. This can be very effective if you want to have more refined volatility trades, giving you more confidence that an expansion will take place.
Low Volatility Flashes - You now have the ability to control the low volatility back ground flash feature that was included with SIVE 1.0
Volatility Candles - You can now plot the volatility strength as candles! before you weren't able to see the actual underlaying volatility . Till now, turn this on and watch it turn you candles into a colourful array of the rainbow based on the volatility . Note - You will either need to *bring to front* or turn off the price data to see it
Take Profit System (beta) - Before on SIVE 1.0 and in the beta versions we had an early version of the money management. Where based on the ATR on the trade it would give you a suggested Stop Loss and Take Profit area. Now we have completely over hauled that and re calculated how we approach this also giving the trader 2 different options to choose from for suggested Stop Loss placement. We also included a 'Dynamic Take Profit' system that's based on the MTI to give you momentum based Take Profits. These are still in beta stages so any feedback is much appreciated and as always will be reviewed and considered.
RSI bands - Reverse plot the RSI onto your chart. Plot the over sold and over Bought static lines to price!
Moving Average Filter ( Multi Time Frame ) - Introducing a way further refine the trade alerts and give more power into the traders hands. We know that many many traders like to only trade if example. price is Greater Than 200 EMA. We wanted to give traders a choice to refine the trade alerts based on this information. You can choose between 'Price vs MA' - which is explained in that example just provided. The other option is 'MA vs MA', this allows you to filter out trades based on if a Moving Average of your choice(MA1) is Greater than MA2. With all this we also provided Multi Time Frame accessibility to just further give the trader more control and range. You also have the ability to just plot the Moving averages and not filter the trades at all!
Kill Zone / Time Sessions - Including another free script that has already been posted to my account. This script is also unique as it plots the specified time zones 24 hours in advanced . If you trade example. 'New York Session', Instead of using an indicator that only shows you after the fact it happens. You can now plot that time zone 24 Hours in advanced and watch how price trades to it and interacts with it. It has 4 completely customizable Time Zone slots. Please adjust to your time zone and desired sessions.
Here are some examples of SIVE working across various charts with the different features
USDCAD - 1 Hour
Take Profit System
XAUUSD ( Gold ) - 15 min
Trend Scalper System
US30(Dow Jones) - 15 min
Volatility Candles + Low Volatility Flashes
BTCUSD ( Bitcoin ) - 1 hour
Support / Resistance + Dashboard + Multi Time Frame MTI
USOIL (WTI Crude Oil ) - 5m
Kill Zones + Moving Average Filter
APPL( Apple ) - 1 hour
Moving Average Filter
SIVE 1.0 [Soldi]SIVE 1.0
What is SIVE?
SIVE stands for Systematic Institutional Volatility Expansion, SIVE uses a variety of different statistical indicators to gauge volatility along with trend correlation and other measures to filter and define a price move. This system was originally set out to redefine what a 'Trend Following System' could be; we achieved more than just that. We had created what is considered to be one of the first retail quantitative trading system, that incorporates trend following mechanics as well as trend reversal techniques. All while being aligned/correlated to trend and volatility . Something truly powerful to put into the hands of the every day trader, demystifying what quant trading can be while easily presenting it in a way where even your mom could learn how to use the system without being overwhelmed.
What makes this different from any other trading system?
SIVE raises the bar on what traditional indicators and trading systems can do, traditionally you have lagging indicators that only tell you what happened in the past with no correlation to the market or what can happen in the future. Really providing little to no statistical value, yet completely idolized by the retail world. Where SIVE exceeds these systems is all in the math and the application of those formulas to the time/price, finding the synchronicities to exploit for profits as well as exploiting the high probabilities of non-random events. How we do it? well that's in the secret crabby patty formula.
Where we are now, and where we plan to go
SIVE as it stands right now is the very first iteration of the retail quantitative trading system, it is performing exceptionally well but we aren't take that as our standard as we want to always raise the bar. as it stands, we are already working on the updates to come that will dwarf anything we've done in the past.
Our goal with SIVE is to be able to provide an easy to learn and easy to profit trading system that will provide the retail public with a trust worthy system to use. In the future our updates will carry heavier weight on key aspects like Risk to Reward, Win rates and capturing those big parabolic movements that everyone dreams of. Far fetched? for the traditional indicator junkies, but for a Quant it is just a matter of time.
What does it perform best on?
Simply put, yes... We set out to create this to be used for any trading instrument and any timeframe. Intraday timeframes have been shown to give more trades and typically higher reward trades as your able to execute with a high degree of accuracy 1:2 is very modest and can easily be achieved but we have also seen so so many trades run higher than 1:10 and even 1:20!! but as you already may know the market doesn't always give those favorable conditions to trade that high of a Risk to Reward all the time.
Stocks, Crypto, Forex, Metals, Energies, Indices, etc. are all tradeable with SIVE
Directional Volatility Index (DVI) - SoldiDirectional Volatility Oscillator
What the DVI does is it measure 9 different volatility models based on their directional correlation and then scores that. While it calculated the volatility it also measures and scores 5 different indicators to find the likeliness of a retail position. That way the Oscillated value being plotted is that of an accurate modelled nature. This indicator aims to measure and score the directional volatility across the 9 different volatility models and then plots it as an oscillator. Included in that calculation is a measure of the likeliness of a retail traders position.
This can be used to gauge liquidity sweeps in a strategy like Smart Money Concepts. As, all the retail money is long - expect a sweep of the lows or equal highs. etc. more so you can also use this as a market meter like RSI , if the market is Over bought or Over sold, the DVI value will be over 100 or under -100 - or this tool can be used to gauge the underlaying trend!
Examples
Here is an example on BTCUSD - 1d
- as you can see there is significant trend when the DVI is crossed
Here is that same example on BTCUSD - 1d zoomed into 4h
- as you can see there is significant trend when the DVI is crossed
Log OscillatorThe Log Oscillator measures the mean of logarithmic returns, given this data you can assume market expectancy in returns of the mean. When seeing positive Means you can assume positive returns will follow positive returns if positive autocorrelation is present. Vice versa for the other event of negative returns.
How you can effectively use this indicator and oscillator is by looking at a higher time frame and if the oscillator is positive, you can go to a lower timeframe and try to trade in that direction of the market as the expected returns are positive in nature.
You can also spot trend divergences very well as the trend continues but the returns are dropping that means the returns are mean reverting and can have a potential to flip to the other side