TradingView
blackcat1402
29. Sept. 2022 14:34

[blackcat] L3 God Hunter Scalping 

Bitcoin / TetherUSBinance

Beschreibung

Level 3

Background

An ultra-short scaler that I integrate with multiple custom function implementations. Because of its responsiveness it is suitable for small cycle applications.

Function

The first technical indicator to integrate is the stoch. By combining the stoch indicators of long and short periods, I can not only ensure its high-speed reaction speed, but also be compatible with stability.



The second is the improved KDJ indicator to further strengthen buying and selling conditions. Because the final trend output is relatively fast, I used a variety of long-short conditions to improve adaptability. and minimize noise. It is well known that price fluctuations in small cycles are more random.


The third feature is the classification of buying and selling points, not only through the reversal of the trend curve, but also several other buying and selling point conditions, oversold and overbought signals, signal divergence techniques, etc.



Finally, through the nested RSI, the momentum trend strength of the trend signal is represented by a gradient color to assist in judging whether the reversal point is approaching.



Remarks

For differnent instruments and time frames, overbought and oversold threshold should be adjusted accordingly, or it may not work well.
Feedbacks are appreciated.
Kommentare
ConicalHat
what are BS BB BN BF means ?
Nagast
@ConicalHat, I have the same question...
iTibu
@ConicalHat, l2 = buy_now and trend < -120 ?
label.new (bar_index, trend, "BN", color=color.new(color.yellow,50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
buy_secretly and trend < -120 ?
label.new (bar_index, trend, "BS", color=color.new(color.orange, 50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
na
l3 = buy_burst and trend < -120 ?
label.new (bar_index, trend, "BB", color=color.new(color.fuchsia,50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
buy_fast and trend < -120 ?
label.new (bar_index, trend, "BF", color=color.new(color.red, 50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
na

l4 = god_hunter and trend < -100 ?
label.new (bar_index, trend, "GH"
McG16
Great work. Love your indicators!
blackcat1402
@McG16, glad to hear that :)
McG16
@blackcat1402, I've been watching this one with my chart. Seems to be an excellent indicator. My one bit of feedback would be to clean up the excessive labels overlapping. It gets a bit distracting and difficult to understand the signals. Keep up the great work BC!
nabil007
A great find indeed. I have a question on the meaning of BS BB BN BF signals. Thank you, excellent work!
iTibu
@nabil007, l2 = buy_now and trend < -120 ?
label.new (bar_index, trend, "BN", color=color.new(color.yellow,50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
buy_secretly and trend < -120 ?
label.new (bar_index, trend, "BS", color=color.new(color.orange, 50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
na
l3 = buy_burst and trend < -120 ?
label.new (bar_index, trend, "BB", color=color.new(color.fuchsia,50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
buy_fast and trend < -120 ?
label.new (bar_index, trend, "BF", color=color.new(color.red, 50), textcolor=color.white, style=label.style_labelup, yloc=yloc.price, size=size.tiny) :
na

l4 = god_hunter and trend < -100 ?
label.new (bar_index, trend, "GH"
Mehr