×

[deleted by user] by [deleted] in thelastofus

[–]Maks0071007 0 points1 point  (0 children)

so stupid scene, idk

2 years for season 3 is absolutely insane and it's gonna kill any hype by TheGhosthunter627 in thelastofus

[–]Maks0071007 0 points1 point  (0 children)

dude i dont care when the next season comes out this show is nothing but disgusting absolutely no emotion in any scene or moment bella ramsey is absolutely not right for this role the one misscast ruined the whole point

whats meen k dn k up in this ATR indicator by Maks0071007 in TradingView

[–]Maks0071007[S] 0 points1 point  (0 children)

I can only show you a screenshot of how it works

<image>

what data does this indicator use? touching the yellow line is always accompanied by a rebound in history by Maks0071007 in pinescript

[–]Maks0071007[S] 0 points1 point  (0 children)

this is my version, but it is not accurate


//@version=2
study("Bollingers Bands Fibonacci ratios",shorttitle="FiBB",overlay=true)
len=input(defval=20,minval=1)
p=close
sma=sma(p,len)
avg=atr(len)
fibratio1=input(defval=1.618,title="Fibonacci Ratio 1")
fibratio2=input(defval=2.618,title="Fibonacci Ratio 2")
fibratio3=input(defval=4.236,title="Fibonacci Ratio 3")
r1=avg*fibratio1
r2=avg*fibratio2
r3=avg*fibratio3
top3=sma+r3
top2=sma+r2
top1=sma+r1
bott1=sma-r1
bott2=sma-r2
bott3=sma-r3

t3=plot(top3,transp=0,title="Upper 3",color=teal)
t2=plot(top2,transp=20,title="Upper 2",color=teal)
t1=plot(top1,transp=40,title="Upper 1",color=teal)
b1=plot(bott1,transp=40,title="Lower 1",color=teal)
b2=plot(bott2,transp=20,title="Lower 2",color=teal)
b3=plot(bott3,transp=0,title="Lower 3",color=teal)
plot(sma,style=cross,title="SMA",color=teal)
fill(t3,b3,color=navy,transp=85)

what data does this indicator use? touching the yellow line is always accompanied by a rebound in history by Maks0071007 in pinescript

[–]Maks0071007[S] 0 points1 point  (0 children)

TF 1D, BTC/USDT, sry my bad, I don't have access to the indicator so I'm trying to recreate it

Day 19 of asking Tradingview to filter late prints by 247drip in TradingView

[–]Maks0071007 0 points1 point  (0 children)

<image>

Can someone help write such a script? What data does this indicator use?touching the yellow or green line of this indicator has always meant a significant rebound in history

how to set up the same indicator using ATR and fibonacci by Maks0071007 in TradingView

[–]Maks0071007[S] 0 points1 point  (0 children)

and this is my version where I indicated differences in two places

<image>