OPEN-SOURCE SCRIPT

Dynamic Candle Strength

已更新
How It Works
Initialization of Dynamic Levels:

The first candle's high and low are taken as the initial dynamic high and dynamic low levels.

If the next candle's close price is above the dynamic high, the candle is colored green, indicating bullish conditions.
If the next candle's close price is below the dynamic low, the candle is colored black, indicating bearish conditions.
If a candle's high and low crossed both the dynamic high and dynamic low, the dynamic high and low levels are updated to the high and low of that candle, but the candle color will continue with the same color as the previous candle.

Maintaining and Updating Dynamic Levels:

The dynamic high and low are only updated if a candle's close is above the current dynamic high or below the current dynamic low.
If the candle does not close above or below these levels, the dynamic high and low remain unchanged.

Visual Signals:

Green Bars: Indicate that the candle's close is above the dynamic high, suggesting bullish conditions.
Black Bars: Indicate that the candle's close is below the dynamic low, suggesting bearish conditions.
This method ensures that the dynamic high and low levels are adjusted in real-time based on the most recent significant price movements, providing a reliable measure of market sentiment.
發布通知
Dynamic Variables: The script defines dynamicHigh, dynamicLow, dynamicOpen, and dynamicClose to track the high, low, open, and close values of candles.
Update Dynamic Values: Dynamic values are updated based on the close price. If dynamicHigh or dynamicLow is na, or if the current close breaches either threshold, the values are set to the current candle's high, low, open, and close.
Determine Bullish and Bearish Conditions: The script checks if dynamicClose is less than dynamicOpen to identify bearish conditions or if dynamicClose is greater than dynamicOpen for bullish conditions.
Bar Color: Bars are colored green when dynamicClose is greater than dynamicOpen, indicating a bullish condition, and red when it is less, indicating a bearish condition.
發布通知
The previous version was not able to handle gap-up or gap-down situations, so those conditions have been added.
發布通知
The previous version was not able to handle gap-up or gap-down situations, so those conditions have been added.
candlesCandlestick analysisdynamic-trendstrengthtrendpattern

開源腳本

在真正的TradingView精神中,這個腳本的作者以開源的方式發佈,這樣交易員可以理解和驗證它。請向作者致敬!您可以免費使用它,但在出版物中再次使用這段程式碼將受到網站規則的約束。 您可以收藏它以在圖表上使用。

想在圖表上使用此腳本?

免責聲明