Overbought Oversold CandlesA simple script that indicates the overbought and oversold area of the rsi by coloring the candlesticks
Candles
CandlesThe default script has: Doji , Bearish Harami, Bullish Harami, Bearish Engulfing , Bullish Engulfing , Piercing Line, Bullish Belt, Bullish Kicker, and Bearish Kicker. The Piercing Line, Bullish Belt, and the Kickers will usually show up better in the daily charts
Small candle indicatorI've modified the original script by Wiscodish to show any candle that's smaller than the median of the previous 10 as green. As soon as it crosses the median point it'll change colour to gray.
I've also added a horizontal line where the median is so you can see how close the candle is to becoming large.
Retrospective Candlestick ChartWhen i was in Japan with some traders colleagues we talked about traditional charting tools from this country and how they changed the way we look at our charts today. Then suddenly one of the japanese traders i have met earlier said "Why not making another charting tool ? Smoother than Heikin-Ashi and including all the information a trader may need but easier to interpret".
So i had the idea of averaging the input and the output of the respective close / open / high and low price using a recursive exponential window functions, each values will be closer to their true value if they are volatile, if they are not then those values will look smoother, the length input represents the reactivity of the candles, high values represents smoother results but less reactive.The goal of those candles is to make all the information easier to interpret by a trader.
500 input length , the price look smoother, supports and resistances are easier to make.
The interpretation of highs and lows are important, the Retrospective Candlestick Chart save you time by showing only huge movements.
MACD [Moving Average Convergence/Divergence]MACD rendered as candles to make it easier on the eyes. Candles are hollow when the MACD line moves opposite direction of the trend, which can signal a weakening trend.
Volume Strength Candles / Colored BarsIs Price Action Higher or Lower on STRONG or WEAK VOLUME from lookback
(Strong or Weak Bulls // Strong or Weak Bears)
Candles / Bars Indicate the Following (default 13 period lookback / Length)
MAROON Bear Candle with STRONG VOLUME more than 150% of the lookback / length (13 default), STRONG Bear Candle Confirmed With Volume
RED Bear Candle while VOLUME is BETWEEN 50% & 150% of the Lookback / Length (13 default), Neutral Bear Volume Neither strong or weak
ORANGE Bear Candle with WEAK VOLUME (Less than 50% of the Length / Lookback)
DARK GREEN Bull Candle with STRONG VOLUME MORE than 150% of lookback
GREEN Bull Candle with Neutral VOLUME BETWEEN 50% & 150% of the lookback / Length
AQUA Bull Candle with WEAK VOLUME less than 50% of the Lookback
Is price confirmed by volume?
Can Change the Lookback / Length from 13
Can Change the Colors and Transparency to easily see based off your chart background colors I recommend ZERO Transparency to easily identify volume strength (i use white background but many use black or other)
Bearish CandlesPlots 6 different kinds of bearish candlesticks. I started with HPotter's previous work, added 4 other types of bearish Candlesticks and bunched them in one indicator.
Boring Candle - Amol JoshiBoring Candles for - AZ - DZ
#Breakout Analysis
//@version=3
study("Boring Candle", overlay=true)
candleColor = ( abs(open-close)/abs(high-low) > 0.5 )? (open < close ? green : red) : blue
plotcandle(open, high, low, close, color = candleColor)
cooltoyz: shadow candlesAnother tool for the cooltoyz series :)
tired of having to look at multiple time frames for a ticker, and having to mentally mix them to try to guess/visualize trends, or support/resistance levels? so was i, and with this tool i let the chart do the heavy lifting :)
with this, upper time frames are visualized as shadows imposed on the chart itself. there are two levels:
level 1 - represented with strong green/red for candle body, and a thin line for the candle wicks
level 2 - light green/red for the candle body, lighter still for the wicks
it was the best visually appealing representation i could come with, if you find a better one share it in comments, please :)
basically works the same as the previous tool, the ghost candle, but with two levels of time frames superimposed. the same notes and warnings from the ghost candle apply, so go read them, too lazy for a copypasta :)
you can find the ghost candle here:
Candle Length by WiscoDishMeasure of the total candle length, including the upper and lower wicks. Works best as a histogram in my opinion. Used as a quick reference for the high minus the low of each candle.
JC_MacD_RSI_Candle_Strat_public//
// Author : Jacques CRETINON
// Last Version : V1.0 11-22-2016
//
// Risk disclaimer : Do not use this script in production environment. We assume no liability or responsibility for any damage to you, your computer, or your other property, due to the use of this script.
//
// Purpose of this script :
// 1- use same pine code for strategy or study script (with simple modifications)
// 2- be able to send alerts : enterlong, entershort, exitlong, exitshort, stoplosslong, stoplossshort, takeprofitlong, takeprofitshort in a study script like a strategy script should do
// 3- do not repaint (I HOPE)
//
// RoadMap :
// 1- manage : Trailing Stop Loss and Trailing Stop Loss offset
//
// I use this script :
// 1- with default value for XAUUSD, current chart resolution : 1mn, large timeframe : 15mn.
// 2- That's why I hard code MACD5 (5mn average), MACD15 (15mn average), MACD60 (1h average) ...
// 3- MACD, RSI (1mn and 15mn) and Candles info are my inputs to take any decisions
//
// I do not publish my enterLong, enterShort, exitLong and exitShort conditions (lines 204 to 207 are sample !) as they are not as perfect as I'd like. Fell free to use your own conditions :)
//
// Please, report me any bug, fell free to discuss and share. English is not my natural language, so be clement ;) Happy safe trading :)
B3 Buyer-Seller BreakoutsB3 Buyer-Seller Breakouts = If a bar is showing that it is moving in a direction with highs lows and close, all of which are >respectively< moving against the open from the bar before, then it prints indicating buyers or sellers bringing momentum. The arrows and cloud carry into the next bar to give lots of awareness of the micro-term momentum. The cloud represents the better price range from which to add to a position.
This study repaints within the bar, most of my indicators do not, but this one is about timing to get an edge on adding to your already in play position, becoming part of the needed momentum to hit profit targets faster. Also, this theory helps you add to winners, and if you never add to losers, you now have statistical odds in your favor. I got the idea for the study reading about turtle trader method and how that statistical edge is really why it works, always adding on every breakout. Keep in mind that I never buy or sell breakouts to initiate trades, only to scale in.
~Cheers!~ ~B3
VWAP CandlesTried making candles of Vwap instead of normal price to see if something interesting would happen. Something interesting did happen as you can see.
Looks best in 4h because of reasons unknown. In lower timeframes it looks kinda stupid (moves the same as nrmal vwap). Day or above it looks the same as normal candles.
Gaps seem to work as s/r? or at least I've seen price react to those levels.
I've also seen a vwap reversal candles show (like dojis, pin bar), while price candles look normal. Could potentially give you a reversal warning?
You can also plot indicators like bollinger bands etc on the vwap candles. Just press the little plus.
Volume Weighted Market Mean 3.0 [Dia]150924 - v3.0
This script is a complete rewrite of the previous version here .
It gathers market data from up to 8 different Bitcoin exchange pairs (8 is maximum due to script limitations).The influence of each single exchange can be customized individually, default is 50% for 0-fee exchanges, 10% for futures and 100% for all others. For each single exchange a standard deviation from the composite mean price and a average price range are determined. To make data from exchanges with different liquidity comparable, all single exchange price ranges are normalized to the range of the composite mean price. To make data from exchanges with different fee structure (= exchanges that constantly trade at a premium / discount) comparable, all single exchange prices are corrected by their respective standard deviations. To account for trade volume, all price data is weighted by the current candles volume.
- optional Heikin Ashi candle display
- optional EMAs
- lots of switches to play around with ;-)
Candles Pattens (v. 1.14)This script sows you candlestick patterns in real-time.
At that moment script knows Bearish/Bullish Engulf and Doji Points.
You can recommend me which pattens you want to see in next version at comment section below
Reversal Candle Pattern SetUp
An outside reversal candle set up script with buy/sell signals. Looks simple but it's pretty powerful especially if combined with your choice confirming indicator.
The pattern psychology is this one (Frank Ochoa explanation): " The power behind this pattern lies in the psychology behind the traders involved in this setup. If you have ever participated in a breakout at support or resistance only to have the market reverse sharply against you, then you are familiar with the market dynamics of this setup.
[Basically, market participants are testing the waters above resistance or below support to make sure there is no new business to be done at these levels. When no initiative buyers or sellers participate in range extension, responsive participants have all the information they need to reverse price back toward a new area of perceived value.
As you look at a bullish outside reversal pattern, you will notice that the current bar's low is lower than the
prior bar's low. Essentially, the market is testing the waters below recently established lows to see if a downside
follow-through will occur. When no additional selling pressure enters the market, the result is a flood of buying
pressure that causes a springboard effect, thereby shooting price above the prior bar's highs and creating the
beginning of a bullish advance."
[RS]Multiple Moving Average Candle System V0double ma system built into candle sticks,
wick, above body shows true high, under true low.
the body symbolizes the double ma's, colors for expansion/contraction of the ma's.
optional: can hide true close point(black dots)
good usage with rsi candles:
TUX CandlesThis indicator has a lot of information. This is the first version so stay tuned for updates, and please let me know of any bugs.
Candlestick Indicators:
Doji
Shooting Star
Evening Star
Hammer
Hanging Man
Candlestick Formations
Tri-star
Bearish Harami
Bullish Harami
Bearish Harami Cross
Bullish Harami Cross
Bullish Engulfing
Bearish Engulfing
Rising Three
Falling Three
Bearish Abandoned Baby
Bullish Abandoned Baby
Three Black Crows
Three White Soldiers
Technical Indicators:
(You can set you MA periods)
Moving Average Cross
Move Average Crossover
[RS]Bollinger Bands Breakout Candles V0EXPERIMENTAL: a experiment using bollingers and directional momentum, Breakout detector.