This page provides a free set of candlestick chart indicators for trading with TradingView platform. It contains EMA5 (yellow), EMA13 (red) , EMA50 (aqua), EMA200 (white) and EMA800 (blue), crossing of the price and EMA5 (pink cross) as well as TD level 1 high and low points. The codes also plot bullish close-above-high (CAH) or bearish close-under-low (CUL) or bullish TD count up (+TD) or bearish TD count down (-TD)..
This set of indicators is good for a dark background theme in free basic TradingView account. Installation is easy, just create the following five scripts.
1. "Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CAH"
============================================================
study(title="Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CAH", overlay=true)
// Coded by Nimit Chomnawang
// Plot EMA lines
plot(ema(close,5), color= yellow, linewidth = 1)
plot(ema(close,13), color = red, linewidth = 1)
plot(ema(close,50), color = aqua, linewidth = 3)
plot(ema(close,200), color = white, linewidth = 1)
plot(ema(close,800), color = blue, linewidth = 1)
// Plot Bollinger band
basis=sma(close,20)
dev=2*stdev(close,20)
plot(basis, color=olive)
plot(basis+dev, color=olive)
plot(basis-dev, color=olive)
// Plot Price crossing EMA5
short = ema(close,1)
long = ema(close,5)
plot(cross(short, long) ? short : na, style = cross, color = fuchsia, linewidth = 3)
// Plot TD level 1 high points
plotshape((high < high[1]) and (high[1] > high[2]) ,style=shape.triangleup, location=location.abovebar, offset = -1, color=white)
// Plot TD level 1 low points
plotshape((low > low[1]) and (low[1] < low[2]) ,style=shape.triangledown, location=location.belowbar, offset = -1, color=white)
// Plot CAH
plot(close > high[1] ? close : na, style = histogram, color = orange, linewidth = 1)
============================================================
2. "Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CUL"
============================================================
study(title="Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CUL", overlay=true)
// Coded by Nimit Chomnawang
// Plot EMA lines
plot(ema(close,5), color= yellow, linewidth = 1)
plot(ema(close,13), color = red, linewidth = 1)
plot(ema(close,50), color = aqua, linewidth = 3)
plot(ema(close,200), color = white, linewidth = 1)
plot(ema(close,800), color = blue, linewidth = 1)
// Plot Bollinger band
basis=sma(close,20)
dev=2*stdev(close,20)
plot(basis, color=olive)
plot(basis+dev, color=olive)
plot(basis-dev, color=olive)
// Plot Price crossing EMA5
short = ema(close,1)
long = ema(close,5)
plot(cross(short, long) ? short : na, style = cross, color = fuchsia, linewidth = 3)
// Plot TD level 1 high points
plotshape((high < high[1]) and (high[1] > high[2]) ,style=shape.triangleup, location=location.abovebar, offset = -1, color=white)
// Plot TD level 1 low points
plotshape((low > low[1]) and (low[1] < low[2]) ,style=shape.triangledown, location=location.belowbar, offset = -1, color=white)
// Plot CUL
plot(close < low[1] ? close : na, style = histogram, color = orange, linewidth = 1)
============================================================
3. "Lazyinvestments.com EMA5_13_50_200_800_EMA5x_+TD"
============================================================
study(title="Lazyinvestments.com EMA5_13_50_200_800_EMA5x_+TD", overlay=true)
// Coded by Nimit Chomnawang
// Plot EMA lines
plot(ema(close,5), color= yellow, linewidth = 1)
plot(ema(close,13), color = red, linewidth = 1)
plot(ema(close,50), color = aqua, linewidth = 3)
plot(ema(close,200), color = white, linewidth = 1)
plot(ema(close,800), color = blue, linewidth = 1)
// Plot Bollinger band
basis=sma(close,20)
dev=2*stdev(close,20)
plot(basis, color=olive)
plot(basis+dev, color=olive)
plot(basis-dev, color=olive)
// Plot Price crossing EMA5
short = ema(close,1)
long = ema(close,5)
plot(cross(short, long) ? short : na, style = cross, color = fuchsia, linewidth = 3)
// Plot TD level 1 high points
plotshape((high < high[1]) and (high[1] > high[2]) ,style=shape.triangleup, location=location.abovebar, offset = -1, color=white)
// Plot TD level 1 low points
plotshape((low > low[1]) and (low[1] < low[2]) ,style=shape.triangledown, location=location.belowbar, offset = -1, color=white)
// Plot +TD
plot(close > close[4] ? close : na, style = histogram, color = orange, linewidth = 1)
4. "Lazyinvestments.com EMA5_13_50_200_800_EMA5x_-TD"
============================================================
study(title="Lazyinvestments.com EMA5_13_50_200_800_EMA5x_-TD", overlay=true)
// Coded by Nimit Chomnawang
// Plot EMA lines
plot(ema(close,5), color= yellow, linewidth = 1)
plot(ema(close,13), color = red, linewidth = 1)
plot(ema(close,50), color = aqua, linewidth = 3)
plot(ema(close,200), color = white, linewidth = 1)
plot(ema(close,800), color = blue, linewidth = 1)
// Plot Bollinger band
basis=sma(close,20)
dev=2*stdev(close,20)
plot(basis, color=olive)
plot(basis+dev, color=olive)
plot(basis-dev, color=olive)
// Plot Price crossing EMA5
short = ema(close,1)
long = ema(close,5)
plot(cross(short, long) ? short : na, style = cross, color = fuchsia, linewidth = 3)
// Plot TD level 1 high points
plotshape((high < high[1]) and (high[1] > high[2]) ,style=shape.triangleup, location=location.abovebar, offset = -1, color=white)
// Plot TD level 1 low points
plotshape((low > low[1]) and (low[1] < low[2]) ,style=shape.triangledown, location=location.belowbar, offset = -1, color=white)
// Plot -TD
plot(close < close[4] ? close : na, style = histogram, color = orange, linewidth = 1)
============================================================
5. "Lazyinvestments.com RSI7_20_50_80"
============================================================
study(title="Lazyinvestments.com RSI7_20_50_80", overlay=false, precision=2)
// Coded by Nimit Chomnawang
plot(rsi(close,7), color = red, linewidth = 1)
plot(20, color=silver)
plot(50, color=silver)
plot(80, color=silver)
============================================================
After you create these custom scripts, create a candle stick chart with a dark background theme.
For study of long entries, use Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CAH,
Lazyinvestments.com RSI7_20_50_80, and MACD(12,26,close,9) indicators.
For study of short entries, use Lazyinvestments.com EMA5_13_50_200_800_EMA5x_CUL,
Lazyinvestments.com RSI7_20_50_80, and MACD(12,26,close,9) indicators.
For study of TD count up, use Lazyinvestments.com EMA5_13_50_200_800_EMA5x_+TD,
Lazyinvestments.com RSI7_20_50_80, and MACD(12,26,close,9) indicators.
For study of TD count down, use Lazyinvestments.com EMA5_13_50_200_800_EMA5x_-TD,
Lazyinvestments.com RSI7_20_50_80, and MACD(12,26,close,9) indicators.
That's all. Have a happy trading !
Thanks
Lazyinvestments.com
รักสุขภาพ เปลี่ยนตู้ปลาเป็นตู้ปุ๋ยออร์แกนิก [ facebook.com/goldiefilter ]
ลงทุนแล้วดูแลสุขภาพและความงามด้วยนะครับ คลิก =>[store.weloveshopping.com/beautifybynim ]
==============================
==============================
ผ่างบการเงิน ชำแหละพื้นฐานหุ้น ลงทุนถูกเวลา รักษาต้นทุน เพิ่มพูนกระแสเงินสด
มูลค่ากิจการ = ส่วนของเจ้าของ + มูลค่าปัจจุบันของ [ส่วนของเจ้าของที่เพิ่มขึ้นและเงินปันผลที่ได้รับระหว่างเป็นเจ้าของกิจการ 10 ปี]
Search for "lazyinvestments.com" in Facebook and Google !