-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KeltnerStrategy: wrote documentation
- Loading branch information
1 parent
c22c76e
commit f8ebc38
Showing
2 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
98 changes: 98 additions & 0 deletions
98
strategies/trend-follow/KeltnerChannelTrendFollow/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# KeltnerChannelTrendFollow | ||
|
||
## About strategy | ||
The Keltner Channel was first introduced by Chester Keltner in the 1960s. The original formula used simple moving averages (SMA) and the high-low price range to calculate the bands. In the 1980s, a new formula was introduced that used average true range (ATR). The ATR method is commonly used today. | ||
|
||
In the 1980s, Linda Bradford Raschke introduced significant updates to the indicator, refining its methodology and making it more adaptable to the financial markets. This updated version, credited with greater accuracy and responsiveness, is embraced by traders worldwide. | ||
|
||
The Keltner Channel is a volatility-based technical indicator composed of three separate lines. The middle line is an exponential moving average (EMA) of the price. Additional lines are placed above and below the EMA. The upper band is typically set two times the ATR above the EMA, and the lower band is typically set at the inverse of two times the ATR (below the EMA). The bands expand and contract as volatility (measured by ATR) expands and contracts. | ||
|
||
Since most price action will be encompassed within the upper and lower bands (the channel), moves outside the channel can signal trend changes or an acceleration of the trend. The direction of the channel, such as up, down, or sideways, can also aid in identifying the trend direction of the asset. | ||
|
||
**Prerequisites** | ||
* Liquidity | ||
* Volatility | ||
* Trending market | ||
|
||
![](resources/keltner-channels-breakout-strategy.png) | ||
|
||
## Author | ||
Chester Keltner is best known for his contribution to technical analysis in the trading industry, particularly through the development of the **Keltner Channel**. The Keltner Channel is a popular technical indicator used by traders to analyze price trends and volatility in financial markets. | ||
|
||
Chester Keltner introduced the Keltner Channel in his 1960 book, **"How to Make Money in Commodities."** While the original formulation of the Keltner Channel used the 10-day moving average of the typical price and a fixed percentage for the channel distance, modern interpretations often use the Exponential Moving Average (EMA) and the ATR for more dynamic calculations. | ||
|
||
Keltner’s work laid the foundation for this widely-used tool in the trading industry, and his contributions are still highly regarded by traders and technical analysts today. | ||
|
||
## Entry and exit conditions for long side | ||
**Entry** | ||
* Daily close price is above upper band | ||
|
||
|
||
**Exit** | ||
* Daily close price is below lower band | ||
|
||
```pinescript | ||
double multiplierUpper = 1 | ||
double multiplierLower = 0.5 | ||
ema = ta.ema(source = close, length = emaLength) | ||
rangema = ta.atr(atrBreakoutLength) | ||
upperChannel = ema + rangema * multiplierUpper | ||
lowerChannel = ema - rangema * multiplierLower | ||
buyCondition = ta.crossover(close, upperChannel) | ||
sellCondition = ta.crossunder(close, lowerChannel) | ||
``` | ||
|
||
## Filters | ||
**Simple** | ||
* Daily close price is above 200 day moving average (bullish environment) | ||
|
||
**Advance** | ||
|
||
I think using Super trend indicator is more accurate determination of medium-term trend changes from bear market to bull market and vice versa. | ||
|
||
* Daily close price is above Super trend indicator(Time frame: Weekly, ATR lenght: 10, Factor: 3) | ||
|
||
## Position sizing | ||
The size of the position is determined on the basis of volatility, the more volatile the market, the smaller the positions, and conversely, the less volatile the market, the larger positions are traded so that the risk per trade is always the same in various volatile markets. | ||
|
||
**Simple by ATR** | ||
```c# | ||
private double ComputeTradeAmount(){ | ||
int AtrMultiplier = 2; | ||
double amount = (RiskPerTradeInPercentage * AccountSize) / AtrMultiplier * ATR(20, Days) | ||
return amount; | ||
} | ||
|
||
``` | ||
|
||
**Advance accurately determine the percentage risk** | ||
```c# | ||
//entryPrice: your entry to market | ||
//stopPrice: value of lowerband | ||
private double ComputeTradeAmount(double entryPrice, double stopPrice) | ||
{ | ||
double riskPerTrade = (RiskPercentage / 100) * Account.Balance; | ||
double move = entryPrice - stopPrice; | ||
double amountRaw = riskPerTrade / ((Math.Abs(move) / Symbol.PipSize) * Symbol.PipValue); | ||
double amount = ((int)(amountRaw / Symbol.VolumeInUnitsStep)) * Symbol.VolumeInUnitsStep; | ||
return amount; | ||
} | ||
``` | ||
|
||
## Management position | ||
- Only one position open for one market. | ||
|
||
## Suitable markets for trading | ||
* Cryptocurrencies (Bitcoin, Ethereum) | ||
* Stock indexies (S&P 500, Nasdaq, DJI, NIFTY50) | ||
* Stocks in long-term uptrend (AAPL, MSFT, NVDA, TSLA, AMZN, NFLX, SHOP, MA, ASML, PANW) | ||
* Forex pairs in long-term uptrend (USDTRY, EURTRY, GBPTRY, USDINR, USDCNH) - <span style="color:red">warning: in reality impossible to trade due to high swap</span> | ||
|
||
## Notes | ||
|
||
## Resources | ||
* [keltner-channel - therobusttrader.com](https://therobusttrader.com/keltner-channel/) | ||
* [how-to-day-with-trade-keltner-channels - thebalancemoney.com](https://www.thebalancemoney.com/how-to-day-with-trade-keltner-channels-4051613) | ||
* [keltner-channels - howtotrade.com](https://howtotrade.com/trading-strategies/keltner-channels/) | ||
* [keltnerchannel - investopedia.com](https://www.investopedia.com/terms/k/keltnerchannel.asp) |
Binary file added
BIN
+87.8 KB
...llow/KeltnerChannelTrendFollow/resources/keltner-channels-breakout-strategy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.