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.
[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.
{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 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.
lowtimeframeDailyATRA simple script which marks the range highs and range low based on the daily atr.
ATR_bandCreates lower and upper band on BTCUSD chart based on ATR value of the previous day and daily open of the current day
Position Size CalculatorPosition Size Calculator
To calculate stop loss in pips, you can use my other indicator ATR pips
Average True Range % of PriceThis script easily shows in an indicator window the Average True Range % of Price, which helps people understand the volatility of an asset in % terms defined by custom MA periods for custom ATR periods.
The MA Period gives the average price.
The ATR Period gives the average range.
The Average Range / Average Price = Average Range % of Price.
Understanding the volatility of an asset can help people manage risk e.g. if an asset has a low entry cost, but very high volatility it may be more risky than another asset with a high entry cost, but much lower volatility.
ATR Trailing Stop by ceyhunSame coding only coloring and information panel was added.
CDC ATR Trailing Stop V2.1 (2013)
//Barcolor
Green = Trail1 > Trail2 and close > Trail2 and low > Trail2
Blue = Trail1 > Trail2 and close > Trail2 and low < Trail2
Red = Trail2 > Trail1 and close < Trail2 and high < Trail2
Yellow = Trail2 > Trail1 and close < Trail2 and high > Trail2
//It gives White color where there is deterioration.
//InfoPanel
Buy Price = Blue draws the circles at the purchase price.
Profit Long>20 = Risk level taken as a percentage, I got the highest 20%, you can determine as you wish.
Sell Price = Red draws the circles at the purchase price.
Profit Short>20 = Risk level taken as a percentage, I got the highest 20%, you can determine as you wish.