MarvinMartian

Just got this great multi-colored volume bar script... added it

BITSTAMP:BTCUSD   비트코인
to my perspective chart.

First, for fun, look at the big sell spike in Oct 2013. Damn that had to have hurt by the end of the year. Even if they caught it at $900, that would have been $21MM instead of $3MM. I'm sure they were :((

You have to ask yourself, why is there persistent sell volume? Algo Trading Bots.

This is how the colors are determined:
- If today’s closing price and volume are greater than 'n' days ago, color today’s volume bar green.
- If today’s closing price is greater than 'n' days ago but volume is not, color today’s volume bar blue.
- Similarly, if today’s closing price and volume is less than 'n' days ago, color today’s volume bar orange.
- If today’s closing price is less than 'n' days ago but volume is not, color today’s volume bar red.

//
// @author LazyBear
// List of all my indicators: //
study("Colored Volume Bars ", shorttitle="CVOLB_LB")
lookback=input(10)
showMA=input(false)
lengthMA=input(20)
p2=close
v2=volume
p1=p2
v1=v2
c= iff(p2>p1 and v2>v1, green,
iff(p2>p1 and v2v1, red, gray))))
plot(v2, style=columns, color=c)
plot(showMA?sma(v2, lengthMA):na, color=maroon)
면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.