ADOL_

[ADOL_]Trend_Oscillators_Multi

ENG) Trend_Oscillators_Multi

introduction)

This is a trend analyzer implemented in the form of an oscillator.

An oscillator is a technical analysis tool that identifies the direction of market trends and determines the time period. Making it an oscillator means creating range. By setting the upper and lower limits like this, the unlimited expansion area that can appear on the chart is limited. As a limited area is created, we can identify oversold and overbought areas, which is good for checking momentum.

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

This is the multi version, which uses only multi time zone.

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

A table was created using the table.new function, and various information windows were installed on the right side of the chart.

I hope this can be a destination for many travelers looking for good landmarks.

- You can select 8 types of moving averages (in addition to independently developed moving averages), trend area display, signal display, oversold/overbought area display, and alerts.

- You can set various time zones in Timeframe. With two timeframes, you can check the conditions overlapping time at a glance.


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.

Simply crossing the moving average is easy. To fine-tune the speed difference, it is necessary to re-establish the relationship between functions.



MA: You can select the MA_type. This is a necessary option because the profit/loss ratio for each item varies depending on the type of moving average.

Start: The starting value to set the oscillator range.

End: This is the last value to set the oscillator range.

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

Timeframe: Set the time to overlap with up to 2 time frames.

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

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

reference :

security(syminfo.tickerid, tf, src)


Trading method)

- signal

Buy and Sell signals are displayed in cross positions.

Entry is decided based on Buy and Sell signals.


Alert)

Buy, Sell, Buyloss, Sellloss

Disclaimer)

Scripts are for informational and educational purposes only. Use of the script does not constitute professional and/or financial advice. You are solely responsible for evaluating the risks associated with your script output and use of the script.



KOR) 트렌드_오실레이터_Multi


소개)

이것은 오실레이터 형태로 구현된 트렌드 분석기 입니다.

오실레이터는 시장의 추세방향을 확인하고 기간을 결정하는 기술적 분석 도구입니다. 오실레이터로 만드는 것은 범위가 생기는 것을 의미합니다. 이렇게 상한과 하한을 정함으로써, 차트에서 나타날 수 있는 무제한적인 확장영역이 제한됩니다. 제한된 영역이 만들어짐에 따라 우리는 과매도와 과매수 구간을 식별할 수 있게 되며, 모멘텀을 확인하기 좋습니다.

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

이것은 multi 버전으로, 2개의 시간대만을 사용합니다.

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

table.new 함수를 사용하여 table을 만들고, 차트 우측에 여러가지 정보창을 갖췄습니다.

좋은 지표를 찾는 많은 여행자들에게 이곳이 종착지가 될 수 있기를 바랍니다.

- 이평선 종류 8종 선택(독자적으로 개발한 이평선 추가), 추세영역 표시, 시그널 표기, 과매도/과매수 영역 표시, 얼러트가 가능합니다.

- Timeframe에서 다양한 시간대를 설정할 수 있습니다. 2개의 Timeframe을 통해 시간을 중첩한 조건을 한눈에 확인할 수 있습니다.


원리)

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

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

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

단순히 이평선을 교차하는 것은 쉽습니다. 세밀하게 속도차이를 조정하는데 함수간의 관계를 다시 설정할 필요가 있습니다.



MA : MA_유형을 선택할 수 있습니다. 이평선의 종류에 따라 종목당 손익비가 달라지므로 꼭 필요한 옵션입니다.

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

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

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

Timeframe : 최대 2개의 타임프레임으로 시간을 설정합니다.

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

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

참고 :

security(syminfo.tickerid, tf, src)


매매방법)

- 시그널

시그널의 Buy와 Sell은 크로스 위치에서 표시됩니다.

Buy와 Sell 시그널에서 진입을 결정합니다.


얼러트)

Buy, Sell, Buyloss, Sellloss

면책조항)

스크립트는 정보 제공 및 교육 목적으로만 사용됩니다. 스크립트의 사용은 전문적 및/또는 재정적 조언으로 간주되지 않습니다. 스크립트 출력 및 스크립트 사용과 관련된 위험을 평가하는 책임은 전적으로 귀하에게 있습니다.

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

● 차트공부 : open.kakao.com/o/gGu8VIkg (코드:1190)

▼ 더 많은 정보는 Website 클릭 ▼

linktr.ee/adol_artcrypto
仅限邀请脚本

仅限作者授权的用户访问此脚本,并且通常需要付费。您可以将其添加到收藏中,但是只有在向作者请求并获得许可之后,才能使用它。 请与ADOL_联系以获取更多信息,或按照以下作者的说明进行操作。

请注意,这是未经脚本版主分析的仅限邀请私密脚本。它是否符合网站规则尚不确定。在您100%信任脚本作者并了解脚本的工作原理之前,TradingView不建议您为脚本付费并使用它。在很多情况下,您可以在我们的公共指标库中免费找到一个不错的开源替代品。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

作者的说明

Power performance. Development takes a lot of time. So, it's not free. This is an invitation-only script. above, Contact me. 강력한 수행기능. 개발에 많은 시간이 걸립니다. 그래서, 무료가 아닙니다. 초대 전용 스크립트입니다. 위, Contact me.

想在图表上使用此脚本?

警告:请阅读,然后再请求访问权限。