ADOL_

[ADOL_]Trend_Osilator_beta

ADOL_ Diupdate   

ENG) Trend_Osilator_beta


Introduction)

This is an indicator that analyzes and displays trends.

By taking the form of an oscillator, upper and lower limits are established, which limits the unlimited range that can appear on the chart.

Through oscillatorization, you can find overbought, oversold, and current trend areas.

This version is a beta version, so signals and alerts do not occur.

It adopts MTF and is a simple but functional indicator. Complement your skills with the trading methods below.

To use multiple time frames, use the timeframe.multiplier function.

We created a table using the table.new function and displayed the time zone selected in the current indicator at the bottom right of the chart.

When using multiple indicators, you can easily distinguish the currently selected time.


Principle)

Set up two moving averages with different speeds and make the relative difference.

Create the speed difference between the two moving averages using methods such as over = crossover(fast, slow) and under = crossunder(fast, slow).

The point at which the difference in relative speed decreases is where the possibility of inflection is high. Through the cross code, you can find out when the speed difference becomes 0.

It was created by determining the green and red areas at the inflection point.

Using the code of fill(fast, slow, color = fast>= slow? color.green: color.red, transp = 80, title = "fillcolor")

You can color and distinguish areas.

MA: MA_type can be selected (limited)

Min: This is the starting value to set the oscillator range.

Max: This is the final value to set the oscillator range.

Lenght: This is the number of candles used to calculate the calculation formula in the oscillator.

repaint: You can choose whether to draw a repaint. The default is OFF.

The coding for repaint settings for the indicator was written using the optimal method recommended by TradingView.

Reference:

security(syminfo.tickerid, tf, src)


Trading method)

You can set different time zones in Timeframe. Even if you change the time frame of the chart, it is displayed based on the time set in the indicator.

If the timeframe is set to 4h in the indicator, the standard that occurs in 4h is retrieved and displayed even if the chart screen is adjusted to 15m or 30m.

This is a feature of Multi-Time-Frame (MTF). The repaint problem that occurred when using MTF was resolved by referring to TradingView's recommended code.

User can decide whether to repaint or not. The default is OFF.

In the green area, Buy is the dominant opinion, and in the red area, Sell is the dominant opinion. simple!

You can gain good insight by deciding to buy or sell without moving too far from the point where the area changes.

- Settings are the most common default values. It is also possible to change the settings, but leave the settings as is.

If you want to do short shots, you can select the time frame as 1 hour, 15 minutes, or whatever time you want. If you want to analyze big changes, you can select the time frame as 4 hours or daily.

The recommended basic time frame is 4 hours.

- Upward divergence


We confirm that 8/25 is the lowest point.

- trend line


- Find a property for sale by amplitud.

Breaking a trend line that candles cannot indicate, It can be used to view branches.



Disclaimer)

This indicator is not an indicator that guarantees absolute returns and is used for simple reference purposes. Accordingly, all trading decisions you make are solely your responsibility.



KOR) 트렌드_오실레이터_베타


소개)

이것은 트렌드를 분석하여 표기해주는 지표입니다.

오실레이터 형태를 갖춤으로써, 상한과 하한이 정해지며, 이로 인해 차트에서 나타날 수 있는 무제한적인 확장영역이 제한됩니다.

오실레이터화를 통해, 과매수와 과매도, 현재의 트렌드 영역을 잘 찾을 수 있습니다.

이 버전은 베타바전으로 시그널과 얼러트가 발생하지 않습니다.

MTF를 채택했으며, 단순하지만, 기능적으로 훌륭한 지표입니다. 아래 매매방법에서 능력을 보완하십시오.

멀티타임프레임을 사용하기 위해 timeframe.multiplier 함수를 사용합니다.

table.new 함수를 사용하여 table을 만들고, 차트 우측 하단에 현재 지표에서 선택한 시간대가 표시되도록 하였습니다.

여러개의 지표를 사용할 때 쉽게, 현재 선택된 시간을 쉽게 구분가능합니다.


원리)

속도가 다른 두 개의 이평선을 설정하고 상대적인 차이를 만듭니다.

over = crossover(fast, slow) , under = crossunder(fast, slow) 와 같은 방법으로 두개의 이평선의 속도차이를 만듭니다.

상대적 속도의 차이가 줄어드는 시점은 변곡의 가능성이 높은 자리입니다. cross code를 통해 속도차가 0이 되는 시점을 알 수 있습니다.

변곡점에서 초록색과 빨간색의 영역을 결정하는 방법으로 만들어졌습니다.

fill(fast, slow, color = fast>= slow? color.green: color.red, transp = 80, title = "fillcolor") 의 코드를 사용하여

영역을 색칠하고 구분할 수 있습니다.

MA : MA_유형을 선택할 수 있습니다.(제한적 사용)

Min : 오실레이터 범위를 설정할 시작값입니다.

Max : 오실레이터 범위를 설정할 마지막값입니다.

Lenght : 오실레이터에서 계산식을 산출하기 위한 캔들의 개수입니다.

repaint : 리페인팅을 그릴지 선택할 수 있습니다. 기본값은 OFF 입니다.

해당 지표의 리페인트 설정에 관한 코딩은 트레이딩뷰에서 권장하는 추천 방법으로 작성되었습니다.

참고 :

security(syminfo.tickerid, tf, src)


매매방법)

- Timeframe에서 다양한 시간대를 설정할 수 있습니다. 차트의 시간프레임을 바꿔도 지표에서 설정한 시간을 기준으로 표시해줍니다.

지표에서 Timeframe을 4h로 설정했다면, 차트화면을 15m으로 조정하거나 30m으로 조정해도 4h 에서 발생하는 기준을 가져와 보여줍니다.

이것은 Multi-Time-Frame(MTF)의 기능입니다. MTF 사용시 발생하는 리페인트 문제는 트레이딩뷰의 권장코드를 참고하여 해결했습니다.

사용자가 리페인트 여부를 결정할 수 있습니다. 기본값은 OFF 입니다.

초록색의 영역에서는 매수가 지배적인 의견이며, 빨간색의 영역에서는 매도가 지배적인 의견입니다. 단순!

영역이 바뀌는 시점에서 멀리 벗어나지 않고 매매를 결정하면 좋은 통찰력을 얻을 수 있습니다.

- 설정값은 가장 보편적인 기본값입니다. 설정값을 바꾸는 방법도 가능하지만, 설정값을 그대로 두고,

단타를 하고 싶으면 타임프레임을 1시간, 15분, 혹은 원하는 시간, 큰 변화를 분석하고 싶으면 타임프레임을 4시간, 날봉 으로 선택하면 되며,

추천하는 기본 시간프레임은, 4시간입니다.

- 상승다이버전스


를 통해 8/25이 최저점이 됨을 확인합니다. 하락다이버전스는 같은 원리로 반대방향으로 그릴 수 있습니다.

- 추세선


그림과 같이 같은 영역의 고점을 이어 하락추세선을 긋습니다. 상승추세선은 반대입니다.

캔들이 표시할 수 없는 추세선돌파 지점을 볼 수 있게 활용가능합니다.

- 진폭으로 매물대 찾기


빨간색 영역의 저점과 초록색 영역의 고점이 발생할 때, 그 차이를 하나의 진폭으로 보고 범위를 설정합니다.

여기서 하나의 진폭은 위나 아래로 갈 수 있는 패턴값이 되며, 이 패턴값은 지지/저항으로 작용합니다.


얼러트)

얼러트의 설정이 포함되어 있지 않습니다.


면책조항)

해당지표는 절대수익을 보장하는 지표가 아니며, 단순한 참고용으로 사용됩니다. 따라서, 귀하가 내리는 모든 거래 결정은 전적으로 귀하의 책임입니다.

Catatan Rilis:
minor fix

[ADOL_]에서 제공하는 모든 스크립트 및 콘텐츠는 정보 제공 및 교육 목적으로만 제공됩니다. 과거 실적이 미래 결과를 보장하지 않습니다.
모든 콘텐츠는 서비스를 보여주기 위한 가설로 간주되어야 하며 재정적 조언으로 해석되어서는 안 됩니다.

● 우리 시드 레벨업 : open.kakao.com/o/gGu8VIkg

▼ 더 많은 정보는 Website 클릭 ▼

linktr.ee/adol_artcrypto
Skrip terproteksi
Skrip ini dipublikasikan secara closed-source dan anda dapat menggunakannya dengan bebas. Anda dapat memfavoritkannya untuk digunakan pada grafik. Anda tidak dapat melihat atau mengubah kode sumbernya.
Pernyataan Penyangkalan

Informasi dan publikasi tidak dimaksudkan untuk menjadi, dan bukan merupakan saran keuangan, investasi, perdagangan, atau rekomendasi lainnya yang diberikan atau didukung oleh TradingView. Baca selengkapnya di Persyaratan Penggunaan.

Inggin menggunakan skrip ini pada chart?