TradingView
LazyBear
2015년 4월 11일 오전 4시 44분

Belkhayate Timing [LazyBear] 

Bitcoin / U.S. dollarBitstamp

설명

--- Update April 11, 2015 ----

I have merged in @TheMighyChicken's code (Thanks!) and added some more options. Updated source here - pastebin.com/fVx5Bugi

Changes:
--------------
- Switch between plain candles and colored oscillator candles.
- Switch between candles and plain oscillator view.



--- Original Description ---

Belkhayate Timing, by Mostafa Belkhayate, is very famous in the Forex groups. This is a port from one of the MT4 versions available. If you have used this in other platforms, do let me know if this looks compared to those.

The usage is similar to that of ValueChart (tradingview.com/v/vqWXNNq2/). The middle area is the centroid or neutral area, the shaded regions (red/green) are extreme and beyond those are AlertZones. This seems to be used in conjunction with his other indicators, but, in my limited testing, I have seen this give a lot of good signals, especially on divergences.

Indicator allows coloring bars based on the oscillator position or show oscillator histogram (Check the options page).

Histogram=ON:


No Oscillator Smoothing:


@TheMightyChicken Can you do your candle magic on this oscillator too, just like you did for ValueChart? :)

More Info:
forexfactory.com/attachment.php?attachmentid=942089&d=1334351098

List of my public indicators: bit.ly/1LQaPK8
List of my app-store indicators: blog.tradingview.com/?p=970
코멘트
SamFISCHER
we need belkhayate regression curve
Futuraman
LB, imo your InSync indicator blows this one out of the water.

I'm looking forward to you publishing the Shadow Channels indicator and will be happy to top up your tip jar again when I get it.
LazyBear
+1, Insync is a very good one, I agree.

ShadowChannel is in the queue, will publish soon :)
manamemeemee
@Futuraman, I'm intrested in shadow channels, but I can't find anything about them on the Internet... Can you tell me more about it ?
drrumpy
@manamemeemee, Did you ever find any additional information on this cool indi LB was working on?
manamemeemee
@drrumpy, nope
PoshTrader
Here you go. :)

// Body
bHigh = o > c ? o : c
bLow = o < c ? o : c
b0 = (o > 0 and c > 0) or (o > 0 and c < 0) ? bHigh : (o < 0 and c < 0) or (o < 0 and c > 0) ? bLow : 0
b1 = o < 0 and c > 0 ? bHigh : o > 0 and c < 0 ? bLow : 0
bCover = o > 0 and c > 0 ? bLow : o < 0 and c < 0 ? bHigh : 0
plot(b0, linewidth=3, color=silver, style=histogram)
plot(b1, linewidth=3, color=silver, style=histogram)
plot(bCover, linewidth=3, color=white, style=histogram)
// Wick
w0 = h > 0 ? h : l
w1 = h > 0 and l < 0 ? l : h
wCover = h > 0 and l > 0 ? l : h < 0 and l < 0 ? h : 0
plot(w0, linewidth=1, color=silver, style=histogram)
plot(w1, linewidth=1, color=silver, style=histogram)
plot(wCover, linewidth=1, color=white, style=histogram)
PoshTrader
For some reason I can't write entire script here. I sent you pm.
pu354367taris1906
@tmc, plz send the script to me
didouqc
@tmc, Hello Sir, I understand that b0 is the open, b1 is the close, w0 is the high and w1 is the low. But what are cCover and wCover? Thank's.
더보기