This is an experimental strategy that enters long when the instrument crosses over the upper standard deviation band of a VWAP and enters short when the instrument crosses below the bottom standard deviation band of the VWAP. I have added a trend filter as well, which stops entries that are opposite to the current trend of the VWAP. The trend filter will reduce...
This is a custom volume-based trading strategy. Let's go through the script and understand how it works: Input Variables: baselinePeriod: Specifies the period length for calculating the baseline volume. smoothingPeriod: Specifies the period length for smoothing the percentage difference. buyThreshold: Sets the threshold for a positive crossover...
VWAP+EMA+RSI Strategy for the group MelléCasH This strategy will enter a long position when the closing price is above both the VWAP and the 15 EMA, and the RSI is above the specified overbought level. It will exit the position when the price falls by the specified stop loss percentage, rises by the specified take profit percentage, or when the trailing stop loss...
General Description and Unique Features of this Script Introducing the VWAP Momentum-Pullback Strategy (long-only) that offers several unique features: 1. Our script/strategy utilizes Mark Minervini's Trend-Template as a qualifier for identifying stocks and other financial securities in confirmed uptrends. NOTE: In this basic version of the script, the...
This strategy is unfortunately not finished yet. A pretty simple strategy. If price broke through VWAP and had three consecutive candles following the breakthroughs trend, the high of the third candle will be drawn. If this happened after a crossover of the vwap and price breaks through the high of the third candle, strategy will go long. Short will be the same...
This is based on Dillon's double VWAP strategy. I enters when the ADX is low (aka not a trending market) and it's not close to the VWAP reset. Check it out.
//@version=5 // // Bannos // #NotTradingAdvice #DYOR // Disclaimer. // I AM NOT A FINANCIAL ADVISOR. // THESE IDEAS ARE NOT ADVICE AND ARE FOR EDUCATION PURPOSES ONLY. // ALWAYS DO YOUR OWN RESEARCH // // Author: Adaptation from JustUncleL Big Snapper by Bannos // Date: May-2022 // Version: R1.0 //Description of this addon - Script using several new...
This is a strategy designed for swing trading on markets such as crypto and stocks. Its components are: VWAP Time Management Risk management Rules for entry: We entry only on Monday, if our close of the candle crossed above VWAP Rules for exit We exit always on Sunday or if we either hit the TP/SL levels. If you have any questions let me know
Exchange: Kraken Timeframe: 5m Pair: ETH/USD If you use this for any other exchange or pair, you'll have to tweak the settings, most importantly are the trailing stop ticks. This strategy is currently in what I would call beta mode. It uses the volume weighted average price indicator, rate of change, two triple exponential moving averages and the relative...
This is a simple yet very efficient swing strategy designed for crypto and stock market, using big timeframes. Its main component is VWAP weekly, so for best scenarios its better to use big timeframes such as 8h+. The rules for entry are simple: If our close if above vwap weekly we enter long . If our close is below vwap weekly we enter short. We exit from...
Hello Traders, this is a simple intraday strategy involving the ever reliable VWAP and a chop index to add twist to the traditional style . You can modify the values on the stock and see what are your best picks. Comment below if you found something with good returns Strategy: VWAP based strategy but uses an additional powerful indicator Chop index to help us...
This is a simple intraday strategy for working on Stocks or commodities based out on Super Trend and intraday's best friend - VWAP . You can modify the start time and end time based on your timezones. Session value should be from market start to the time you want to square-off Important: The end time should be at least 2 minutes before the intraday square-off...
This is a simple intraday strategy using very basic intraday super indicators - RSI & VWAP for working on Stocks . You can modify the values on the stock and see what are your best picks. Comment below if you found something with good returns Strategy: Indicators used : The Relative Strength Index (RSI) is one of the most popular and widely used momentum...
This is a long only strategy designed maily for stock markets and futures. In general it works best with 1h, however it can be optimized with other timeframes as well. Components: VWAP MACD histogram EMA 9 Rules for entry Long : For VWAP: close is above the vwap daily EMA: close is above the moving average MACD histogram is above 0 Short: For VWAP: close...
This is a trending strategy designed for stock market, especially long trending assets such as TSLA, NIO, AMAZON and so on. Its made of volatility bands and weekly VWAP, in this case daily and weekly. This strategy has been adapted to go long only. Rules for entry For long , we want to enter close of a candle is above vwap weekly, and at the same time the...
This strategy is extremely useful for positional traders or traders using timeframe 15-minute of higher. It uses following combo of values: VWAP, CCI, Volume and Moving average (simple and exponential) Caution: Avoid taking trade if candle size is greater than twice the average candle size. for that wait for the retracement to near trailing stoploss
An RSI filtered version of PJ Sutherland's Jaws Mean Reversion algorithm using volume weighted average price (VWAP) instead of simple moving average (SMA). "Long" on the close when; 1-) 2 period VWAP closes 3% or more below the 5 period VWAP , 2-) 5 period exponential average of the 2 period RSI is below 30. "Exit Long" on the close when; 1-) 2 period VWAP...