Opening Trend BounceCustom indicator that helps me with bounce plays. This indicator plots lines based on ATR; a line is added at every 25% of an ATR. The shaded columns at the beginning of the day are time based bounce zones; stocks that bounce, typically do so within those zones.
Average True Range (ATR)
Surya_ExitThis is written primarily for intraday exits with aggressive loss control; based on short term momentum + volatilty reversals ... may not be good if you have higher risk reward appetite and want to ride the trend longer
Trailing Stop LossTrailing stop loss indicator to determine when to exit a position.
Multiple trailing stop loss calculation techniques are implemented:
ATR: Determines stop loss using a gap from recent highest value, that gap is defined by the ATR value and a multiplier
MA: Just a simple moving average used as a stop-loss
Percentage: Uses a percentage of the price
The script also implements alerting to be notified when the stop loss price is reached.
Loro Vola StopThis indicator is a variation of a chandelier volatility stop using an average true range. The indicator draws a green support line in an uptrend and a red resistance line in a downtrend. The signals normally should be used as exit triggers.
HG Scalpius - ATR Up/Down Tick HighlightHG Scalpius - ATR Up/Down Tick Highlight
This indicator highlights ATR(14) upticks (green) and downticks (red) and has the below application:
- If a new trend closing high (low) is made on a downtick in ATR, decreasing volatility mode turns on
If you come across or think of any other useful scripts for the HG Scalpius system please comment below!
Links to 2 previous HG Scalpius scripts:
-
-
Happy trading!
Code:
study(title="Average True Range", shorttitle="ATR", overlay=false)
length = input(title="Length", defval=14, minval=1)
smoothing = input(title="Smoothing", defval="RMA", options= )
ma_function(source, length) =>
if smoothing == "RMA"
rma(source, length)
else
if smoothing == "SMA"
sma(source, length)
else
if smoothing == "EMA"
ema(source, length)
else
wma(source, length)
ATR = ma_function(tr(true), length)
c = ATR >= ATR ? color.lime : color.red
plot(ATR, title = "ATR", color=c, transp=0)
Cracking Cryptocurrency - Quadrigo Position SizingCracking Cryptocurrency - Quadrigo Position Sizing
This indicator is designed to work in conjunction with our position sizing calculations pursuant to the Quadrigo Indicator.
This indicator will allow a trader to input their Account Balance and desired Risk % that they have decided, through their statistical analysis, provides them the greatest Return on Equity balanced against minimal draw down.
Once inputted, the Data Window will display the recommended USD Position Size. It will also pull the current price of Bitcoin, so that a recommended BTC Position Size will be calculated as well, making orders very easy to enter on exchanges that deal in BTC values for order value.
This indicator is optimized for the aesthetics of traders using TradingView's mobile app. With a simple glance you can determine your proper position size for any trade. This is helpful because the larger Quadrigo indicator can take up a lot of screen real estate when on mobile version.
Cracking Cryptocurrency - QuadrigoCracking Cryptocurrency - Quadrigo
An objective method of determining an initial Take Profit and Stop Loss, based on true market volatility and not arbitrary price levels. This indicator gives the user a powerful range of input variation, from Average to Median True Range and a myriad permutations of smoothing and look back lengths, to build an objective value from which to measure profit and stop levels.
This indicator also automatically calculates a recommended position size based on our position sizing methodology. Simply input your capital amount and desired risk level. This indicator will display your optimum position size in USD or BTC, even giving you the flexibility to select your desired exchange for BTC/USD conversion calculations.
Features & Functions
Set custom multipliers for Take Profit and Stop Loss Levels.
Select between Average or Median True Range Calculations.
Select smoothing type and look back length for True Range.
Input custom True Range Level for dialing in precise measurements.
Position Size Calculator.
Aesthetically pleasing display of Take Profit and Stop Loss Levels.
Aesthetically pleasing dashboard display of all relevant trade information including Potential Loss, Distance to Stop Loss, and TR Percentage, among other data.
Indicator displays quantity of position to be removed at each take profit for convenient order setting flow.
---
Purpose
To give clear objective stop losses and take profit levels based off price volatility rather than arbitrary price levels, percentage points, ticks, pips, etc.
Support/ Resistance with H1 ATR - strategy mainline versionThis script using ATR (average true range) with source hl2 for create Support/ Resistance line
The color meaning:
- Green = Support line
- Red = Resistance line
Signal:
- If close price breakout Resistance line -> LONG signal will been active.
- If close price breakout Support line -> SHORT signal will been active.
Input setting:
Recommended default setting.
- Factor: amplitude for create Support/ Resistance line.
- Length: length of ATR.
- Offset: number of bar for check sideway or choppy market.
- Take profit: if you want test close position by profit.
- Stop loss: should not be missed.
- Open Position with Stop-Market type:
+ Open LONG position with high price and type Stop-Market.
+ Open SHORT position with low price and type Stop-Market.
Strategy setting:
Recommended default setting if you trade on Binance Futures or change Comission if you trade on another exchange.
Best backtest if:
- Max drawdown less than 10%.
- Min backtest time: 6 month.
- Avg profit: 10%/ month when no leverage is used.
Alert version:
1 - Select create new alert
2 - Condition:
+ eb BUY -> LONG signal
+ eb BUY close -> close LONG position
+ eb SELL -> SHORT signal
+ eb SELL close -> close SHORT position
3 - Option: recommended using only. Because the signal will be more accurate if the price close breakout successfully.
+ Always put stop loss position to avoid PUMP/ DUMP market.
// Note: alert version not free, send for me a private message on TradingView to get price and gain access.
Recommended:
- Using in M30, M45, H1 timeframe with default setting.
- Symbol: BTC
- Exchange: Binance Futures
- Order size: 10% wallet balance, maximum 25% wallet balance.
- Leverage: X2-X5, maximum X10.
---> I using 10% wallet balance and X2 only.
[LunaOwl] 11 kinds of Adaptive MA Model作品: 11種自適應性平滑模型
It integrates eleven kinds of adaptive moving average method. At first, I just wanted to make a ATR. Later, the price series ±N*ATR mult, to form two series. Then use the concept of support/resistance breakthrough to design it, and then two adaptive series formation channels were formed. Take the average of the two series as the signal. When the price crosses the signal, it's judged to be long or short.
整合了十一種能夠自適應性的移動平均模型。起初只是想要做一個基本款ATR指標,後來將價格加減N個ATR倍數,形成兩條序列形成通道,再使用支撐阻力突破的概念去設計它,再形成兩條自適應性的序列形成通道,再取中間值當成信號。當價格與信號交叉,則判斷作多或者作空。
--------------------------*
Parameter 設置參數
Resolution: The default is "the same as the variety". Is a named constant for resolution input type of input function.
商品分辨率:預設與品種相同。是input函數的時間周期輸入類型的命名常量。
Smoothing: The default is Recursive Moving Average(RMA). It can choose other methods, the table is as follows.
平滑類型:預設是「遞回平均」,可以選擇其它方法,列表如下。
列表 / The table of moving averages is as follows:
//****中英對照表*****##______________________________________
1. 遞回平均 || Recursive Moving Average
2. 簡單平均 || Simple Moving Average
3. 指數平均 || Exponential Moving Average
4. 加權平均 || Weighted Moving Average
5. 船體平均 || Hull Moving Average
6. 成交量加權 || Volume Weighted Moving Average
7. 對稱加權 || Symmetric Weighted Moving Average
8. 雙重指數 || Double Exponential Moving Average
9. 三重指數 || Triple Exponential Moving Average
10. 高斯分佈 || Arnaud Legoux Moving Average
11. 提爾森T3 || Tillson T3 Moving Average
//##_________________________________________________________
Candle Mode: There are three versions, original, two-color and four-color.
燭台模式:預設模式只區分趨勢,可以改成原版蠟燭或四種顏色版本。
Length: The default is 14, usually no need to adjust.
平滑期數:預設值是14,基本上不用理它。
Occurrence: The default is 1. The range is 0~10. The larger the value, the more delayed. If zero will become too sensitive and noise.
滯後性:預設值是1。調整範圍是0~10,數值愈大信號愈延遲,如果值為0,會變得過於敏捷,那將會失去平滑的意義。
N multiple: The default is 0.618, can be set to 1. The range is 0.382~3.000.
倍數N:預設值是0.618,也可以設定1,最低是0.382,最大是3。
--------------------------*
1. Candle Mode can set the original candle, cancel candle trend color changes. However, the background will still be filled.
可以設定顯示原版的蠟燭線,背景與線並不會消失。
2. Four-color version of candles. It shows changes in trends and prices.
四色版本的蠟燭線,可以顯示趨勢與每日收盤價的變化。
Hikkake PatternLifted description from web:
Hikkake means to trap, trick, or ensnare. Primarily, this price pattern seeks to identify inside bar breakouts and profit from their failures.
An inside bar is a price bar that is entirely within the range of the preceding price bar. Inside bars are typical on price charts of most timeframes.
While you’ll often find inside bars in congested markets, they also offer a low-risk entry point for price action traders. The contracted range of an inside bar offers a natural tight stop-loss.
Hence, inside bar breakouts seem attractive. However, if you are patient and focus on identifying false breakouts, you might be able to find more reliable trading setups in the form of Hikkakes.
In a nutshell, the Hikkake pattern offers a systematic approach to trading false inside bar breakouts.
As a filter I incorporated VWAP into the code to only trigger Bullish / Bearish signals when price is Above/Below VWAP respectively. The ATR is used to create a Stop buffer (red cross) for the Entry signal ( green dot ). The R1 and R2 (orange squares) are two possible profit targets that are customizable to different Risk multiples based upon the difference between Entry and Stop.
Twin Range Filter Algo@Colinmck used two different ranges to generate signals. Read his release notes to find out what the original script does.
I added one condition which seems to increase performance on 15m BTCUSD as well as 1h BTCUSD and that is ATR with 32 periods being smaller than ATR with 64 periods. I used my script Volatility Optimiser to discover this tendency.
Both buying and selling conditions are same as in @Colinmck's script plus one condition of my own. You can disable my condition.
Target and stop-loss are manually set values in ticks.
Time stop-loss is manually set value in a number of candles. After this number of candles, a position always exits (or should 😇). You can disable it by inserting a very long period. I do not recommend it, because a value of indicator should not be measured in luck and if market starts moving in the direction after 40 periods, the predictive capability of an indicator is questionable.
I used 300/150/17 for 15m BTCUSD chart and 900/30/17 for 1h BTCUSD. I didn't try to optimize any other parameters for these periods.
Since this script relies mostly on volatility for its prediction, I wouldn't recommend using it on its own. Individual approach to the market is recommended. Also, it didn't work on EURUSD when using the same default values and different order management (tp, sl, time sl), so it is probably not as versatile.
Let me know what do you think of this strategy. If you have some ideas about how to make it more reliable, share it in the comments, I might put it to the test. Good luck 🍀
TradeSense Breakout Strategy v1TradeSense is a Renko brick breakout trading system for short-term or intraday trade. It is also a trend following strategy using a confluence of multiple MA's to spot the underlying trend. Exit and Stop Loss is based on dynamic ATR to predict possible target based on ticker's real time volatility.
So far this has been back-tested on major cyrptos, and the same concept is applicable to other asset types. It is more suitable for lower timeframes (such as the 30m, 15m, and 5m) though you may try adjusting the parameters for higher timeframes.
Feel free to backtest it and comment below!
Optimum parameters:
BTCUSD-15m
- Noise Filter: 1
- ATRLength : 15
- SL coefficient : 2.0
- TP coefficient : 1.5
ETHUSD-15m
- Noise Filter: 7
- ATRLength : 16
- SL coefficient : 2.0
- TP coefficient : 1.5
{INDYAN} GO WITH TREND V2This indicator has almost everything for intraday trading . There are two supertrends one with higher time frame and one at lower time frame, Due to which we can recognize reversal. If higher time frame supertrend is showing uptrend and minor is showing downtrend then better to avoid taking any trade in between. Both trend should be in same direction.
Tenkan and kijun is there to verify the trend authencity, check where the tenkan and kijun crossover is there or not at the time of reversal signal given by supertrends. It will boost trading chances.
Also VWAP is placed to know the current situation, If price is below VWAP go for sort if all other things match as above said.
HEMA LEMA is a EMA band and i found that it act as support and resistance, If price breaks channel with volume and sustain above/below for 2 candle close (TIMEFRAME AS SYMBOL).
Also placed FAST EMA to recognize the fast moving trend.
Pivot with CPR is there to trade on basis of CPR and Pivot.
For demand and supply traders, they can use blue and black candle for marking up zones. Blue is boring/base candle and Black is explosive candle.
I hope it will help my trader friends to recognize the trend and reversal.
Let me know if anything more we need to include or remove to make it better for everyone.
Happy Trading... Love INDYAN
#intraday
#hema-lema
#pivot
#cpr
#supertrend_reversal
#demandzone
#supplyzone
#tenkansen
#kijunsen
Volatility OptimizerI created Volatility Optimizer to test various volatility conditions and how they affect signals/indicators I create for my customer. It pits long-term, short-term and middle-term ranges against each other. Whichever is highest will also print a dot on the top of the indicator window.
Most indicators and strategies work well in only one area. Whether you differentiate market phases to contraction/expansion/trend or sideways/impulse wave/correction, Optimus might help you filter out wrong signals. For example, in the impulse wave, the shortest period range (Blue) should get quickly on top. If you are seeking opportunities in the correction phase, it is when red should be dominant.
The lengths of ranges need to be set based on your strategy and timeframe. If you look many candles back, the preset values probably need to be increased.
You may look are which volatility length average is highest. You might also look at which one is ascending or descending.
Good luck!
DA. Daily ATR (Pips) (10%)This is the Daily ATR Indicator that convert the ATR value into pips.
This script support the pair that contain JPY.
And show the 10% value of ATR in pips.
ATR Timeframe RangeThis indicator shows the ATR range on the daily or any other timeframe on your current chart. All settings are fully customize-able.
ATRxNIndacator shows price range calculated as previous closing price +/- ATR * multiplier
Setup options: multiplier, average type (RMA, EMA,SMA,WMA), Source and number of point to average
Индикатор показывает диапазон цен рассчитанный как цена предыдущего закрытия +/- ATR * множитель
Настраивается : Множитель, тип усреднения (RMA, EMA,SMA,WMA), Источник и Длина усреднения
ATR Trailing Stop advanceHello Traders,
The average true range (ATR) is a technical analysis indicator that measures market volatility . The ATR indicator is easy to use and gives an accurate reading about an ongoing trend that very effective.
I. Signals are used for entry
- Entry your long position (buy) when price crosses above the ATR trailing stop line.
- Entry your short position (sell) when price crosses below the ATR trailing stop line.
II. ATR Trailing Stops Setup
- The ATR period is used to adjust the sensitivity of the ATR trailing stop line. With larger period, the ATR will "smoother" but will signal slower than the price.
- ATR multiplier is a multiple of ATR trailing stop.
- If you want to backtest with trailing take profit, you can tick the box “test with trailing?”. It will affect 2 parameters which are: Trailing point and trailing offset. Where: Trailing Point is the trigger point, the distance from the entry price. Trailing Offset is the take-profit price, which is the distance from the Trailing Point.
III. A few ATR trailing stop configurations, you can use for backtesting:
1. BTC /USDT (M15):
- ATR period: 80
- ATR multiple: 1.91
- Trailing point: 63
- Trailing offset: 10
2. BTC /USDT (M30):
- ATR period: 71
- ATR multiple: 1.63
- Trailing point: 60
- Trailing offset: 10
3. ETH/USDT (M30):
- ATR period: 90
- ATR multiple: 1.81
- Trailing point: 1.12
- Trailing offset: 0.15
4. XRP/USDT (M30):
- ATR period: 125
- ATR multiple: 1.61
- Trailing point: 0.0016
- Trailing offset: 0.0003
IMPORTANT:
Generally, ATR trailing stop still fails in a sideways-moving market. Be Careful and research the strategy before making a buy/sell order.
Hope you enjoy it. We look forward to hearing from you so we can improve this strategy.
Thank you,
ATR Stop Loss LONG/SHORT by melihgulerYou can monitor the stop loss level according to ATR in 2 ways (Long/Short).
Jackrabbit.modulus.ATRThis is the ATR indicator for the Jackrabbit suite and modulus framework.
This indicator supports differential timeframe analysis and confirmational bias. Timeframes supported:
1 Second, 5 Seconds, 15 Seconds, 30 Seconds, 1 Minute, 5 Minutes, 15 Minutes, 30 Minutes, 45 Minutes, 1 Hour, 2 Hours, 3 Hours, 4 Hours, 6 Hours, 8 Hours, 12 Hours, and 1 Day
The main indicatior and the confirmational indicator can both be individually tuned for the length of the Average True Range and smoothness lookback. When confirmation bias is enanled, the buy/sell signals are displayed appropriate to both charts. The ATR boundaries can be selected for when to trigger a signal independently of the primary and confirmation chart. On the chart, when it is visable, deeper reds are better buy signals. Deeper greens are better sell signals.
The Jackrabbit modulus framework is a plug in play paradigm built to operate through TradingView's indicator on indicatior (IoI) functionality. As such, this script receives a signal line from the previous script in the IoI chain, and evaluates the buy/sell signals appropriate to the current analysis. The results are either combined with the signal line, or used as confirmation to the signal line. A new signal line is generated for the next script in the link.
Buy/Sell alerts are produced, but this script is not designed or meant to function outside my framework.
By default, the signal line is visible and the charts are turned off. Signal line visibility is controlled by the Style tab, and the charts display is controlled by the indicator settings tab.
This script is by invitation only. To learn more about accessing this script, please see my signature or send me a PM. Thank you.