Двойная экспоненциальная скользящая средняя (DEMA)
SlingerMust be added an Ichimoku Clound with the following entries
Conversion Line Periods __4
Base Line Periods _______ 26
Lagging Span 2 Periods___ 52
Displacement __________ 26
Turn off from chart
-Conversion Line
-Base Lina
-Lagging Span
Must add 1 EMA 25
Instructions, USE FOR BINARY AT TRENDING CHARTS
5MIN
BUY
Price must be OVER Ichimoku Clound, EMA 25 and pulled back to the GREEN lines
SELL
Price must be BELOW Ichimoku Cloud, EMA 25 and pulled back to the GREEN lines
ENTRY
As it comes back moving up or down after touching the green line(s)
I may update the script later and add all at the same so you don't have to add the EMA 25 and the Ichimiku Cloud
Double Exponential Moving Average² ProUsing this indicator allows you to use two Double Exponential Moving Average (DEMA) indicators in one indicator with variable values which can be changed in the indicator settings.
DEMA attempts to remove the inherent lag associated to Moving Averages by placing more weight on recent values.
If you would like to use this indicator drop me a line and send a request for it.
DEMA² LiteUsing this indicator allows you to use two Double Exponential Moving Average (DEMA) indicators in one indicator with fixed values.
DEMA attempts to remove the inherent lag associated to Moving Averages by placing more weight on recent values.
Hope this helps many of you to be more efficient in your chart analysis - have fun!
If you would like to be able to change these values drop me a line and send a request for the DEMA² PRO indicator.
Turtle_Trading추세 추종 거래를 위한 지표입니다.
스캘핑 또는 단타와 같은 단기 거래보다 스윙 거래에 적합합니다.
생겨나는 점들을 지지선 또는 저항선으로 생각하시면 됩니다.
빨간점은 하락추세 파란점은 상승추세를 뜻합니다.
추세를 이용하는 지표답게 횡보장에 약합니다
Turtle_Trading 추세 추종 거래를 위한 지표 입니다.
스캘핑 또는 단타와 같은 단기 거래보다 스윙 거래에 적합합니다.
생겨나는 점들을 지지선 또는 저항선으로 생각하시면 됩니다.
빨간 점은 하락추세 파란 점은 상승추세를 뜻합니다.
특별한 거래 원칙은 없어요. 자유롭게 사용하세요~
트렌드를 이용하는 지표답게 횡보장에 약합니다.
[ProfitTrailer] DEMA Spread Buy/Sell StudyProfitTrailer buy/sell study for DEMASPREAD strategy.
The script highlights the region where trailing is most likely to succeed.
[ProfitTrailer] DEMAGAIN Buy/Sell Study (standalone)ProfitTrailer buy/sell study for DEMAGAIN strategy.
The script highlights the region where trailing is most likely to succeed.
[ProfitTrailer] DEMAGAIN Buy/Sell StudyProfitTrailer buy/sell study for DEMAGAIN strategy.
The script highlights the region where trailing is most likely to succeed.
[ProfitTrailer] DEMA Cross Buy/Sell StudyProfitTrailer buy/sell study for DEMACROSS strategy.
The script highlights the region where trailing is most likely to succeed.
Dema-tfNice Dema with TF function
design to help you to see trends better and to use it as a backbone for indicator that you choose with DEMA
can help you to see trend or filter bad signals
make the TF =to the graph timset or higher
The mTF is non repainting
DEMA Crossover Strategy_01_SARThis is used to do trade based on golden cross and death cross. It uses SAR.
DEMARSIV1 alerts and take profitThis version is the same as DEMARSI with following differences
I add take profit to short and long when DEMA MTF 1 is crossing DEMA MTF 2 (they are calculated different that why when you increase int2 in min to longer time the difference between them increse)
if you want the TP to be on signal of fast and slow DEMA RSI 2 (just change the code inside) by putting the long cond to be as the buy cond
for any questions please ask
DEMARSIThis is little tricky indicator but you need to understand how its work in order to make it easy to understand
The black line is DEMA RSI hybrid which is made on the MTF length that is not repainting.
The green and red zones are also DEMA RSI that is calculated in different way (the cross between the fast and the slow moving create the color change and the signal.
you can buy or sell using the signals shown (no alerts given) but it easy to add. the since the first MTF DEMA RSI is slower the the other ones we can use it as base . so lets say you enter in green and the second DEMA is still above the black line the trend is still forward and even if you get sell signal you still can hold the coin as it expected to rise further . on the other hand once you get sell signal in red and its fall down bellow black line then it the true end of the buy period. you need to find best condition for your purpose which mean to play with setting (here I put 240 MTF over rsiDEma kegth 21) , other options can be better (did not test it).
here without the cross signals of dema rsi 2
here with MTF 120
DEMA-MTF with alerts This model based on DEMA with non repainting MTF
if you want to change the MTF use int2
buy and sell show in triangke signals
alerts included
you can smooth the signal with len1 if needed
Aspray's Moving Average Convergence/DivergenceAspray's Moving Average Convergence/Divergence a.k.a MACD-AS
MACD-AS better than MACD, because it gives an early signal.
BUY signal: If MACD-AS histogram is red (and big at negative side) and cross over signal line
SELL signal: If MACD-AS histogram is green (and big at positive side) and cross under signal line
3/9/27/9 Zero Lag EMA / EMA / Pivots / Dynamic Support (Fixed)// Fixed error message "Index should not be negative(-8)"
//
// @author lonestar108
//
study(title = "3/9/27/9 Zero Lag EMA / EMA / Pivots / Dynamic Support", shorttitle="3/9/27/9 ZLEMA/EMA/Pivots/Support", overlay=true)
src=close
lengths=input(3, title="Short Period Length")
length=input(9, title="Fast Period Length")
length2=input(27, title="Slow Period Length")
plen=input(9, minval=1, title="Pivot Period Length")
// ema, zero lag ema
ema1=ema(src, length)
ema2=ema(ema1, length)
d=ema1-ema2
zlema=ema1+d
ema3=ema(src, length2)
// ema, zero lag ema
ema4=ema(src, length)
ema5=ema(ema4, length)
d2=ema4-ema5
zlema2=ema4+d
ema6=ema(src, length2)
// pivot points
highest_high = highest(high, plen)
highest_dev = dev(highest_high, plen) ? na : highest_high
high_pivot = highest_dev
high_series = fixnan(high_pivot)
lowest_low = lowest(low, plen)
lowest_dev = dev(lowest_low, plen) ? na : lowest_low
low_pivot = lowest_dev
low_series = fixnan(low_pivot)
// Sell Setup
priceflip = barssince(closeclose and priceflip
sell = sellsetup and barssince(priceflip!=9)
sell8 = sellsetup and barssince(priceflip!=8)
sellovershoot = sellsetup and barssince(priceflip!=13)
sellovershoot1 = sellsetup and barssince(priceflip!=14)
sellovershoot2 = sellsetup and barssince(priceflip!=15)
sellovershoot3 = sellsetup and barssince(priceflip!=16)
// Buy setup
priceflip1 = barssince(close>close )
buysetup = close<close and priceflip1
buy = buysetup and barssince(priceflip1!=9)
buy8 = buysetup and barssince(priceflip1!=8)
buyovershoot = barssince(priceflip1!=13) and buysetup
buyovershoot1 = barssince(priceflip1!=14) and buysetup
buyovershoot2 = barssince(priceflip1!=15) and buysetup
buyovershoot3 = barssince(priceflip1!=16) and buysetup
// TD lines
val= buy !=sell
TDhigh = valuewhen(val,high ,0)
val1= sell !=buy
TDlow = valuewhen(val1,low ,0)
////////////////////////////
// PLOTTING
icolor=rising(zlema,1) ? lime : red
plot(zlema, color=yellow, linewidth=1)
plot(ema3, color=lime, linewidth=1)
plot(high_series, style=circles, color=lime, linewidth=1)
plot(low_series, style=circles, color=red, linewidth=1)
plot(high_pivot + 1, color=red, style=circles, linewidth=3)
plot(low_pivot - 1, color=lime, style=circles, linewidth=3)
plot(cross(zlema, ema3) ? rising(zlema,1) ? low - 1 : high + 1 : na, color=icolor, style=cross, linewidth=2)
plot(cross(zlema2, ema3) ? rising(zlema2,1) ? low - 1.25 : high + 1.25 : na, color=yellow, style=circles, linewidth=2)
plot(cross(zlema2, ema6) ? rising(zlema2,1) ? low - 1.35 : high + 1.35 : na, color=orange, style=circles, linewidth=2)
plot(cross(close, ema3) ? rising(zlema,1) ? low - 1.15 : high + 1.15 : na, color=fuchsia, style=circles, linewidth=2)
plotchar(buy,'9b','9',location.belowbar,color=lime,transp=0)
plotchar(sell,'9s','9',location.abovebar,color=red,transp=0)
plotchar(buy8,'8b','8',location.belowbar,color=lime,transp=0)
plotchar(sell8,'8s','8',location.abovebar,color=red,transp=0)
plot(TDhigh ? TDhigh : na ,style=circles, linewidth=1, color=lime,offset=-9)
plot(TDlow ? TDlow : na ,style=circles, linewidth=1, color=red, offset=-9)
barcolor(sellovershoot? #FF66A3 : sellovershoot1? #FF3385 : sellovershoot2? #FF0066 : sellovershoot3? #CC0052 : buyovershoot? #D6FF5C : buyovershoot1? #D1FF47 : buyovershoot2? #B8E62E : buyovershoot3? #8FB224 : na)
// Uncode for line chart with indicators //
c = sell? #FF0000 : buy? #00FF00 : sellovershoot? #FF66A3 : sellovershoot1? #FF3385 : sellovershoot2? #FF0066 : sellovershoot3? #CC0052 : buyovershoot? #D6FF5C : buyovershoot1? #D1FF47 : buyovershoot2? #B8E62E : buyovershoot3? #8FB224 : #c0c0c0
plot(close, color=c, linewidth=1)