Blockunity

Blockunity Drawdown Visualizer (BDV)

Blockunity アップデート済   
Monitor the drawdown (value of the drop between the highest and lowest points) of assets and act accordingly to reduce your risk.

Introducing BDV, the incredibly intuitive metric that visualizes asset drawdowns in the most visually appealing manner. With its color gradient display, BDV allows you to instantly grasp the state of retracement from the asset’s highest price level. But that’s not all – you have the option to display the oscillator’s colorization directly on your chart, enhancing your analysis even further.

The Idea
The goal is to provide the community with the best and most complete tool for visualizing the Drawdown of any asset.

How to Use
Very simple to use, the indicator takes the form of an oscillator, with colors ranging from red to green depending on the Drawdown level. A table summarizes several key data points.

Elements
On the oscillator, you'll find a line with a color gradient showing the asset's Drawdown. The flatter line represents the Max Drawdown (the lowest value reached).

In addition, the table summarizes several data:
  • The asset's All Time High (ATH).
  • Current Drawdown.
  • The Max Drawdown that has been reached.

Settings
First of all, you can activate a "Bar Color" in the settings (You must also uncheck "Borders" and "Wick" in your Chart Settings):

You can display Fibonacci levels on the oscillator. You'll see that levels can be relevant to drawdown. The color of the levels is also configurable.

In the calculation parameters, you can first choose between taking the High of the candles or the Close. By default this is Close, but if you change the parameter to High, the indication next to ATH in the table will change, and you'll see that the values in the table will be affected.

The second calculation parameter (Start Date) lets you modify the effective start date of the ATH, which will affect the drawdown level. Here's an example:

How it Works
First, we calculate the ATH:
var bdv_top     =   bdv_source
bdv_top         :=  na(bdv_top[1]) ? bdv_source : math.max(bdv_source, bdv_top[1])

Then the drawdown is calculated as follows:
bdv             =   ((bdv_source / bdv_top) * 100) - 100

Then the max drawdown :
bdv_max         =   bdv
bdv_max         :=  na(bdv_max[1]) ? bdv : math.min(bdv, bdv_max[1])
リリースノート:
Addition of an alerting system. This alert can be activated by setting the condition "Blockunity Drawdown Visualizer (BDV)" and selecting "Any alert() function call". The alerts sent are as follows:
  • New Max Drawdown.
  • Drawdown falls below -25% / Drawdown recovers -25%.
  • Drawdown falls below -50% / Drawdown recovers -50%.
  • Drawdown falls below -75% / Drawdown recovers -75%.

Blockunity
blockunity.io/
unyx-data.com/
contact@blockunity.io
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?