194
Constance Brown liked to use this by taking the first break of the zero line by the 3/10 oscillator in the direction of the trend-line relative to above or below zero. The similarities between the histogram and the MACD histogram are striking and its use is almost the same. Useful for seeing divergence in the same way noted by DR. Elder, take the first opposite colored bar after divergence which he stated was to have one peak lower than the previous but must break below zero in between. (opposite is true for bearish play)
I offer no updates to its use. this is the 3/10 oscillator popularized by Constance Brown. The only customization done here is cosmetic. This is just a copy for the user who saw my screen and wanted it exactly how mine was.
Enjoy responsibly, and as always, if you use this, take responsibility for your actions for good or ill, because I cannot be.
Good trading all,
Shiroki
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
//@version=2
study("3/10 Osc",shorttitle="3/10", precision=5)
three   = sma(close,input(3, title="Short period"))
ten     = sma(close,input(10,title="Long period"))
osc     = three-ten
siglen  = input(16, title="Signal line")
avg     = sma(osc,siglen)
//red

salmon = #FA8072

//green

mintgreen = #00FF40

//blue

dodgerblue = #1E90FF

plot(siglen==0?na:osc, color=mintgreen,transp=0,linewidth=2,title="3/10 oscillator")
plot(siglen==0?0:avg, color=rising(avg,1)?dodgerblue:salmon, transp=40,linewidth=4,title="Trend line",style=histogram)
plot(siglen==0?osc:na, color=rising(osc,1)?dodgerblue:salmon,style=histogram, linewidth=4,transp=40)