TradingView
niceboomer
14 Th06 2019 08:11

Top and Bottom Oscillator - Quan Dao 

VIETNAM PROSPERITY JOINT STOCK COMMERCIAL BANKHOSE

Mô tả

This oscillator used to find bottoms and tops to decide when to go in and out of the market. It takes combination of price power, its direction and volume over the time into consideration.

*** Can be used on long term chart (monthly or weekly) or even short-term one like daily, hourly chart.

*** Indicator colors:
- Red: trend down
- Green: trend up
- Black: trend is on-going (either up or down), should wait for the reversal to come.

*** As a general rule of using any oscillator indicator:
- Buy when the oscillator is low and sell when oscillator is on its top.
- Be hesitate to buy when oscillator is on top just because the price is high and everyone is excited about it, as your risk is big and the reward is low.
- Always put a stop when you go in the market, as NO indicator can guarantee you 100% correct all the time.

Phát hành các Ghi chú

Updated to USD/JPY to have longer view in term of time.

Phát hành các Ghi chú

Updated UI and underlying calculation.
Added MACD for TAB line as well.

Phát hành các Ghi chú

Updated chart view.

Phát hành các Ghi chú

Plot MACD histogram by area instead of bars.

Phát hành các Ghi chú

Use -20 as hist base for MACD histogram.

Phát hành các Ghi chú

Use Apple stock as example.

Phát hành các Ghi chú

- Add a new tool to check the trend: Trending Oscillator (over 100 and under -100 are overbought and oversought areas)
- Use the Trending Oscillator to check what the trend is now.
- Then use the TAB Oscillator for timing your enter entry with the trend.

Phát hành các Ghi chú

Use BTC 4H chart.

Phát hành các Ghi chú

Use TNAMA for the MA.
Add more signals when the MA is oversold or overbought (under 0 or over 100).
Change default length to 73.

Phát hành các Ghi chú

- Update default length to a longer value.
- Use NAMA cloud to indicate trending status (background color).

Phát hành các Ghi chú

Add ability to edit timeframe (MTF).
Bình luận
chungyatfai2005
@niceboomer
I like your script. It is so cool, can I have access to the source coding ? thx
niceboomer
@chungyatfai2005, Thanks a lot for your donation. It'd be a good source to encourage me to improve my scripts more. Happy bull run 2024. Cheers ;)
My1000X
Hi @niceboomer,
Its a Amazing Indicator,
It would be wonderful help if you give access to the source coding.
donnamichele
this indicator is the bomb!! Holy moly! It is extremely accurate. I love the little green arrows letting me know the chart is going up. Great work, thanks so much!!!!
niceboomer
@donnamichele, I'm glad that you liked it ;)
zschonn
@niceboomer can you please tell what is "new MA" ?
niceboomer
@zschonn, the normal signal in most cases will not exceed its MA (always <100 and >0). With this new signal line, it will exceed the limits sometimes and when it's over 100 or under 0, I guess it's time to take action then. This new signal line also use NAMA indicator in its heart so you don't need to worry about choosing the period for your MA anymore. Let me know if you have any questions. Cheers ;)

nama(src, len) =>
alpha = 1.618 / 100
ma = ta.sma(src, len)
ma := na(ma[1]) ? ma : alpha * src + (1 - alpha) * ma[1]
ma

dnama(src, len) =>
ma1 = nama(src, len)
ma2 = nama(ma1, len)
ma1 - ma2 + ma1

tdnama(src, len) =>
ma1 = dnama(src, len)
ma2 = dnama(ma1, len)
ma3 = dnama(ma2, len)
3 * (ma1 - ma2) + ma3
zschonn
What a job !!! Now I don't need to follow vwap with their bands. Brilliant ! Many thanks
niceboomer
@zschonn, it's great to hear that you like this script ;)
Thêm nữa