TradingView
LazyBear
2014년 4월 16일 오후 6시 4분

Indicator: Custom COG channel 

설명

This is my custom channel (Bear Channel!? :)) derived from BB/STARC. It uses both ATR/STDEV for plotting the bounds.

I use COG (Center of Gravity) for deriving the baseline. This enables it to track the price action better than many other channels that make use of MAs or simply "close". Indicator also marks "squeezes" (stdev bands come inside ATR bands). Pay attention to these, as these usually indicate a move.

I am still exploring this indicator on different BTCUSD time frames, would love to hear your feedback / setups for other instruments.

Code for this indicator: pastebin.com/QXBJqAhA

[Update: 04/20/14]
Code for COG fibs I mentioned in the comments: pastebin.com/CbxY31at
코멘트
Kurbelklaus
Hey guys, i really like this one. Yet still i have problems figuring out how to make proper use of it. Can someone drop me a hint or a good source to a read about channels like this one? I haven't found anything sufficient yet.
QuantitativeExhaustion
Buy straddles/strangle options when you see the blue crosses
Kurbelklaus
Ah thank you that helps :) Basically this was my problem since the squeeze only indicates a move but not the direction. I am just not sure if this is possible on BFX.
TheLark
Something like this works better for all symbols, rather than a hard set 2:

plot_offs_high=0.002
plot_offs_low=0.002
sqz_f=(uls>ul) and (lls<ll)
b_color=sqz_f ? teal : na
plot(sqz_f ? lls - (lls * plot_offs_low) : na, color=b_color, style=cross, linewidth=2)
plot(sqz_f ? uls + (uls * plot_offs_high) : na, color=b_color, style=cross, linewidth=2)
LazyBear
agree, thx.
TheLark
NP, thanks for this and all the rest
sublimares2
Can you update this tool with TheLark correction? I have no idea of how to do it. Thank you
LazyBear
Pastebin link I have given above has this.
QuantitativeExhaustion
If only we had a screener to find these Sqz plays.
LazyBear
Quick visual comparison of this channel with BB. Similar ATR comparison can be made too.

더보기