미래의 롱을위한 현재의 숏

Updated
3월부터 현재, 7월20일까지 현물홀더들한테는 끔찍한 기간이였을수도 있었겠다
싶은 구간입니다.

장시간 차트가 형성되어가는걸 보니 차트패턴에서 답안지를 찾고자하면
현재. 비치코인의 모습은 수렴이아닌 흡사 상승 플래그,가 아닐까 싶은 생각에
아이디어를 올려봅니다.

68~70구간에서의 숏 매집을 계획중입니다. 손익비도 좋고. 3배율 이상의 고배율만 아니라면
충분히 해볼만 하다 라는 판단이 서는군요.

다만. 쥐똥시드로 매매하는게 아닌이상 숏은 수익을 위함이아니라
롱포지션을위한 헷징용으로써 운용하셨으면 좋겠습니다.

여러해 시장에 참여하면서 느낀 바 상승의 수익은 절대로 공매도가 따라잡을수도없고
상폐가아닌이상 애지간하면 롱의 승률이 좋을수밖에 없었으니까요.

결론

68~70 숏 매집후 50K 초반대 롱 매집을 계획중입니다.

70K넘기면 SL 및 현 관점폐기

반대로 50초반대롱도
50k뚫리고나서는 상승플래그 관점폐기, 간단명료하게.

롱이던 숏이던 패턴 이탈시 목표값을 이 아이디어에서 이어서 작성하도록하겠습니다.








@교육,리딩,레퍼럴,거래소홍보,구걸,유튜브 전부 사양합니다. 전 그런거 모릅니다
고수도,햇제도 아닙니다. 그저 일기장처럼 보이는대로 휘갈겨쓰는 아이디어일 뿐입니다.
Note
snapshot
간략하고 쉽게,
Note
길이 7
과매수 78
과매도 22

//version=4
// Copyright by Libertus - 2020
// RSI Divergences v3.1
// Free for private use
study(title="Relative Strength Index - Divergences - Libertus", shorttitle="RSI Div - Lib")
len = input(14, minval=1, title="RSI Length")
ob = input(defval=78, title="Overbought", type=input.integer, minval=0, maxval=100)
os = input(defval=22, title="Oversold", type=input.integer, minval=0, maxval=100)

// RSI code
rsi = rsi(close, len)
band1 = hline(ob)
band0 = hline(os)
plot(rsi, color=(rsi > ob or rsi < os ? color.red : color.black), transp=0)
fill(band1, band0, color=color.purple, transp=97)

// DIVS code
piv = input(false,"Hide pivots?")
shrt = input(false,"Shorter labels?")
hidel = input(false, "Hide labels and color background")
xbars = input(defval=90, title="Div lookback period (bars)?", type=input.integer, minval=1)
hb = abs(highestbars(rsi, xbars)) // Finds bar with highest value in last X bars
lb = abs(lowestbars(rsi, xbars)) // Finds bar with lowest value in last X bars

// Defining variable values, mandatory in Pine 3
max = float(na)
max_rsi = float(na)
min = float(na)
min_rsi = float(na)
pivoth = bool(na)
pivotl = bool(na)
divbear = bool(na)
divbull = bool(na)

// If bar with lowest / highest is current bar, use it's value
max := hb == 0 ? close : na(max[1]) ? close : max[1]
max_rsi := hb == 0 ? rsi : na(max_rsi[1]) ? rsi : max_rsi[1]
min := lb == 0 ? close : na(min[1]) ? close : min[1]
min_rsi := lb == 0 ? rsi : na(min_rsi[1]) ? rsi : min_rsi[1]

// Compare high of current bar being examined with previous bar's high
// If curr bar high is higher than the max bar high in the lookback window range
if close > max // we have a new high
max := close // change variable "max" to use current bar's high value
if rsi > max_rsi // we have a new high
max_rsi := rsi // change variable "max_rsi" to use current bar's RSI value
if close < min // we have a new low
min := close // change variable "min" to use current bar's low value
if rsi < min_rsi // we have a new low
min_rsi := rsi // change variable "min_rsi" to use current bar's RSI value

// Finds pivot point with at least 2 right candles with lower value
pivoth := (max_rsi == max_rsi[2]) and (max_rsi[2] != max_rsi[3]) ? true : na
pivotl := (min_rsi == min_rsi[2]) and (min_rsi[2] != min_rsi[3]) ? true : na

// Detects divergences between price and indicator with 1 candle delay so it filters out repeating divergences
if (max[1] > max[2]) and (rsi[1] < max_rsi) and (rsi <= rsi[1])
divbear := true
if (min[1] < min[2]) and (rsi[1] > min_rsi) and (rsi >= rsi[1])
divbull := true

// Alerts
alertcondition(divbear, title='Bear div', message='Bear div')
alertcondition(divbull, title='Bull div', message='Bull div')

// Plots divergences and pivots with offest
l = divbear ?
label.new (bar_index-1, rsi[1]+1, "BEAR", color=color.red, textcolor=color.white, style=label.style_labeldown, yloc=yloc.price, size=size.small) :
divbull ?
label.new (bar_index-1, rsi[1]-1, "BULL", color=color.green, textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.small) :
pivoth ?
label.new (bar_index-2, max_rsi+1, "PIVOT", color=color.blue, textcolor=color.white, style=label.style_labeldown, yloc=yloc.price, size=size.small) :
pivotl ?
label.new (bar_index-2, min_rsi-1, "PIVOT", color=color.blue, textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.small) :
na

// Shorter labels
if shrt
label.set_text (l, na)
// Hides pivots or labels
if (piv and (pivoth or pivotl)) or hidel
label.delete (l)
// Colors indicator background
bgcolor (hidel ? (divbear ? color.red : divbull ? color.green : na) : na, offset=-1, transp=50)
bgcolor (hidel ? (piv ? na : (pivoth or pivotl ? color.blue : na)) : na, offset=-2, transp=50)

// Debug tools
// plot(max, color=blue, linewidth=2)
// plot(max_rsi, color=red, linewidth=2)
// plot(hb, color=orange, linewidth=2)
// plot(lb, color=purple, linewidth=1)
// plot(min_rsi, color=lime, linewidth=1)
// plot(min, color=black, linewidth=1)
bitcoinperpChart Patternschartpattrenpatterntrading

Related publications

Disclaimer