Cari dalam skrip untuk "bar"
ka66: Average Bar RangeAverages price ranges (high - low) across a set of bars in a given timeframe. Additionally, also plots the Average True Range (ATR) as a better comparison for volatility.
Configurable period and averaging mechanism.
Useful for gauging minimum profits and price movement over a period, a filter for historical volatility.
Furthermore, executing trades is better done with channels like ATR/Keltner channels, or Bollinger Bands.
5 Bars BreakOut//@version=3
study("5 Bars BreakOut",overlay=true)
Price = input(title="Price", defval=ohlc4 , type=source)
res=offset(highest(high,6),1)
sup=offset(lowest(low,6),1)
tsl=iff(valuewhen(iff(close>offset(res,1),1,iff(closeoffset(res,1),1,iff(close tsl
Red = Price < tsl
BarColor = iff(Green,lime,red)
Buy = cross(Price,res)
Sell = cross(sup,Price)
barcolor(color=BarColor)
l1=plot(res,title='Resistant', color=lime)
//l2=plot(tsl,title='Trailling Stop Loss', color=navy)
l3=plot(sup,title='Support', color=red)
fill(l1,l3,BarColor)
by when green
sell when red
Good Luck
Colored Volume Bars [LazyBear] with overlayDivs and candle alignment a little easier to see - volume/2 to size correctly - could still use some refining
All credits to LazyBear for his color volume bar source code
Inside Bars - Rob Dee editCatch Inside Bars with ease with this tool.
Adjust the colour and intensity of the indication candle.
Average Daily Range - without open barBasic ADR-indicator that is showing the daily range on lower timeframes as well, without using the current open daily bar for calculation.
Also plots as line in a separate indicator window. Updates displayed value when hovering over the candles on the chart to see historical Numbers.
Leledc Exhaustion BarAn mt4 indicator converted to pine,its not always accurate but combined with S/R ,pivots, fibs etc will give an edge.
Dots are the major swings holow circles are the minor swings
more here
www.abundancetradinggroup.com
3-Bar-Reversal-Pattern Strategy Backtest This startegy based on 3-day pattern reversal described in "Are Three-Bar
Patterns Reliable For Stocks" article by Thomas Bulkowski, presented in
January, 2000 issue of Stocks&Commodities magazine.
That pattern conforms to the following rules:
- It uses daily prices, not intraday or weekly prices;
- The middle day of the three-day pattern has the lowest low of the three days, with no ties allowed;
- The last day must have a close above the prior day's high, with no ties allowed;
- Each day must have a nonzero trading range.
Please, use it only for learning or paper trading. Do not for real trading.
HEIKIN ASHI COLOUR CHANGE ALERTThis can be used to trigger an alert if Heikin Ashi bar changes color :)
Franklin ATR Bar highlight by els (robotfarm.ru)Script highlights signal bars for tfc3.ru school trading strategy. Working timeframe D.