Rumpy's Donchian Anchored VWAPUses donchian points to anchor VWAPs (start a new VWAP interval). The defaults are set up for a 1H chart, with lookback periods of 1 day, 2 days, 1 week, 2 weeks and 4 weeks for the anchor points.
Green : upper donchian AVWAPs, Red : lower donchian AVWAPS, thin/1day to thickest/4 week.
Option to test whether a new point should be formed from a high or low exceeding the historical high/low over a lookback length or using a closes that exceed the historical high/low.
--------------------------------------
If you find it useful please consider a tip/donation :
BTC - 3BMEXEDyWJ58eXUEALYPadbn1wwWKmf6sA
Canais Donchian (DC)
Don-xSimple indicator that nased on two donochian bases each calculated slight different with MTF , where we based a faster of 240 min over slower of daily one on each other and we put on lower time frame (30 min, 1 hour or 2 hour )
hence we can see the bullish trend (green ) or bearish trend (green ) more easy
can be used as by its own (slight lag ) or with other indicators to see where the asset direction is
Buy & Sell - BTCUSDT:BINANCE 2H by CyatophilumWith this script you can create Buy and Sell alerts to automate your trading.
Configured for BINANCE:BTCUSDT in 2H timeframe.
> > > READ HOW IT WORKS < < <
> > > HOW TO USE < < <
Get the indicator today !
Buy & Sell - BTCUSD:COINBASE 2H Automated StrategyWith this script you can create Buy and Sell alerts to automate your trading.
> > > READ HOW IT WORKS < < <
> > > HOW TO USE < < <
Get the indicator today !
Volume Weighted Donchian ChannelsDonchian channels weighted with volume, they are now closer to the price and can cross it.
Cyatophilum Channels Pro Trader [ALERTSETUP]The generic Alert Setup for Cyatophilum Channels Pro Trader
Donchian resistance and sup MTFThis model has Donchian channel support and resistance levels
if you want to buy and sell according to it then you need to activate the HIGH (resistance =sell) , LOW= support =buy
as you can make signal once they occur
It has MTF so you can see it in different time frame on your graph
Donchian 1Based on the donchian bollinger that made before , then we can build signal by the channel
with alerts , take profit and stop loss
Donchian as bollingerThis indicator give as a donchian channel as bollinger
when the coin bellow the median the asset is bearish zone and opposite when its above the median
you can change the time frame=now on 1440 min
and the standart deviation of the donchian as you wish
so this model try to make the donchian channel to be more flexible like bollinger to some extent
Ethereum Automated Strategy - Bitfinex - 3HHello guys !
Here is a ready to use BITFINEX:ETHBTC Automated Strategy with Long and Short Alerts !
You can see the backtest below using 100% equity of 10 000$, 0.1% commission, long and short trades with no leverage.
Indicator used
Leave a comment to get your trial !
or
Get the indicator today !
Automated Bitcoin Binance Strategy - RIP HODLERSBuilt upon my latest script
Already configured for BINANCE:BTCUSDT in 3H timeframe.
Backtest results below using 100% equity of 10 000$, 0.05% commission, and only buy and sell trades.
Leave a comment to get your trial
or
Get the indicator today !
Cyatophilum Bands Pro Trader V5 [ALERTSETUP]Alert Setup version
Get the Free Backtest version here :
This version includes a new feature.
Trailing Take Profit with % deviation.
For those seeing the indicator for the first time, it works like Donchian Channels with lag and a channel width condition to detect breakouts. On top of that I integrated a Stop Loss and Take Profit system to pinescript.
Backtest results below are calculated with :
Short + Long Strategy
0.05% Commission
100% of 10 000% equity per trade
Strategy data from 25/04/2019 to 18/05/2019
Default Configuration for BITFINEX:ETHBTC 3 minutes timeframe.
This version also has the Stop Loss / Take Profit system included in the previous version, plus a short / long setup distinction. For example you can choose a different stop loss % for long and for short trades.
Previous version:
Get access to the Alert Setup version and automate the strategy today !
Purchase the Cyatophilum Indicators pack
I will publish backtests and configurations so make sure to follow me if you don't want to miss anything !
My Website - blockchainfiesta.com -
My Discord channel - discord.gg -
Trend Impulse FilterIntroduction
There is a lot of indicators similar to this one, however i think this one don't share the same calculation method and this is why i share it. This indicator aim to forecast price direction using an exponential filter architecture using highest and lowest information for the estimation of a smoothing variable. This filter is similar to the average Max-Min filter.
The Indicator
In the code a is equal to 1 when the price is greater or lower than any past price over length period, else a is equal to 0. The center parameter control the filtering degree of the output, when center is equal to 1 and a = 1 the indicator return the highest or lowest depending on market current trend, when center is superior to 1 the output will be smoother, however the reactivity of the indicator will still depend on the length parameter.
A color option show you the trend of the market, however the generated signals are the same that can be generated from a Donchian channel.
When highest is greater than previous highest the indicator direction will move upward, else if lowest is lower than previous lowest the indicator direction will move downward. Therefore the indicator can give information on the Donchian channels direction and provide a nice filter.
Conclusions
Adapting to highest and lowest can make an indicator adapt to the essence of trend trading, the indicator i showed can be used as source for others indicator or in MA crossover strategies. If you have a strategy using Donchian channels you may be interested in using this indicator and se how it fit in your strategy. Hope you like it.
Thanks for reading !
Higher Highs / Lower Lows - m,H,D,W,M w/ Alerts by ZekisA simple but very useful indicator that plots higher highs and lowers lows and that can be reset each hour, day, week or month, so it can plot new HH and new LL only in that range.
It can be used as it it, combined with other indicators or for TA (it's an entire story about highs and lows, google and youtube are your friends).
Alerts for HH/LL and for the first in the series plotted with Long and Short labels.
Use with caution!
Enjoy!
@Zekis
Motion To Attraction ChannelsIntroduction
Channels are used a lot on technical-analysis, however most of the them rely on adding/subtracting a volatility indicator to a central tendency indicator, sometimes the central tendency indicator can even be replaced by pure price. A great channel who does not rely on this kind of architecture is the Donchian channels or the quartiles bands. Here i propose a channel similar to the one made by Richard Donchian with some additional abilities.
The Channels
In my indicator, Motion To Attraction mean that the movement of an object a attract an object b , but we can resume this approach by saying that the longer a trend period is, the smaller the distance between each channels, for example if the price create a new highest then the lowest will move toward this new highest, each time coming closer. The philosophy behind this is that the longer a trend is the more probable it is that she will end.
The code reflect it this way :
here the parameter controlling the channel A (upper)
c = change(b) ? nz(c ) + alpha : change(a) ? 0 : nz(c )
this is traduced by : if channel b move then the parameter c become greater, if channel a move then reset the parameter , the parameter d do the same.
c is used to move the channel A, when c < 1 A is closer to the highest, when c = 1 A is in a central tendency point, when c > 1 A is closer to the lowest.
Slaving the Movement
It is possible to have a better control over the channels, this is done by making c and d always equal or lower than 1. Of course it could be another max value selected by the user.
In order to do that add c1 and d1 as parameter with c1 = c > 1 ? 1 : c , same with d1 but replace c by d.
Its safer to do this but i prefer how the channels act the other way, i will consider implementing this option in the future.
Conclusion
This channel indicator does not rely on past data thanks to recursion. The alpha variable at the start can also be adaptive, this let you make the channels adaptive even if such idea can add non desired results. Low length values can create effects where the lower channel can be greater than the higher one, this can be fixed directly in the code or using the method highlighted in the Slaving the Movement part.
TAD System - F1 TURTLETAD System
A revolution system designed to make trading easy for beginners and non-experienced traders to know when to BUY or when to SELL.
The TAD System was founded by Mr Fred Tam, the principal lecturer of technical analysis in F1 Academy. TAD stands for Turtle, Atom & Duck.
The TAD System is basically a combination of several indicators which are included into the TAD System to make trading as simple as possible.
How simple is the system?
With the three BUY arrows aligned accordingly with the Turtle, Atom and Duck, this triggers an affirmative BUY signal and vice versa.
The F1 TURTLE indicator came from the popular and famous Turtle Trading strategy by Richard Donchian.
The TURTLE indicator is to be used alongside with the ATOM & DUCK indicators.
As with all 3 indicators used alongside, it become the TAD Trading System.
For F1 ATOM indicator:
For F1 DUCK indicator:
TSI-DonchianHere it a TSI with MTF function , together with Donchian high and low channel
the best entry and exit are shown in arrow
Donchian ATR ChannelThis uses a Donchian center line and adds an ATR multiple to generate a channel.
TAD System TURTLE - NKThe TURTLE indicator came from the popular and famous Turtle Trading by Richard Donchian.
However the TURTLE indicator is to be used alongside with the ATOM & DUCK indicators.
As with all 3 indicators used alongside will become the TAD Trading System.
As it is straight forward, a BUY or SELL signal is determined when all 3 arrows of the indicators are aligned together.
Gann Square Of 9 LevelsThis script uses the last hlc3 value of 1H, 4H, D and/or W and rotates it 360º up/down with four increments of 90º to find out potential support and resistance areas. Can be used as a dynamic support & resistance tool or just to gauge how overbought/oversold the market is. Special thanks to @Nv56 for his assistance in writing this script.