ChartPrime

Volume Storm Trend [ChartPrime]

The Volume Storm Trend (VST) indicator is a robust tool for traders looking to analyze volume momentum and trend strength in the market. By incorporating key volume-based calculations and dynamic visualizations, VST provides clear insights into market conditions.

Components:
  • Calculating the median of the source data.
  • Volume Power Calculation: The indicator calculates the "heat power" and "cold power" by applying an Exponential Moving Average (EMA) to the median of volume data arrays.

    // ---------------------------------------------------------------------------------------------------------------------}
    // 𝙄𝙉𝘿𝙄𝘾𝘼𝙏𝙊𝙍 𝘾𝘼𝙇𝘾𝙐𝙇𝘼𝙏𝙄𝙊𝙉𝙎
    // ---------------------------------------------------------------------------------------------------------------------{
    
    max_val = 1000
    src     = close
    
    source  = ta.median(src, len)
    
    heat.push(src > source ? (volume > max_val ? max_val : volume)  : 0)
    heat.remove(0)
    
    cold.push(src < source ? (volume > max_val ? max_val : volume) : 0)
    cold.remove(0)
    
    heat_power = ta.ema(heat.median(), 10)
    cold_power = ta.ema(cold.median(), 10)


    Visualization:
  • Gradient Colors: The indicator uses gradient colors to visualize bullish volume and bearish volume powers, providing a clear contrast between rising and falling trends.
  • Bars Fill Color: The color fill between high and low prices changes based on whether the heat power is greater than the cold power.
  • Bottom Line: A zero line with changing colors based on the dominance of heat or cold power.
  • Weather Symbols: Visual indicators ("☀" for hot weather and "❄" for cold weather) appear on the chart when the heat and cold powers crossover, helping traders quickly identify trend changes.

    Inputs:
    • Source: The input data source, typically the closing price.
    • Median Length: The period length for calculating the median of the source. Default is 40.
    • Volume Length: The period length for calculating the average volume. Default is 3.
    • Show Weather: A toggle to display weather symbols on the chart. Default is false.
    • Temperature Type: Allows users to choose between Celsius (°C) and Fahrenheit (°F) for temperature display.

    Show Weather Function:
    The `Show Weather?` function enhances the VST indicator by displaying weather symbols ("☀" for hot and "❄" for cold) when there are significant crossovers between heat power and cold power. This feature adds a visual cue for potential market tops and bottoms. When the market heats to a high temperature, it often indicates a potential top, signaling traders to consider exiting long positions or preparing for a reversal.

    Additional Features:
    • Dynamic Table Display: A table displays the current "temperature" on the chart, indicating market heat based on the calculated heat and cold powers.


    The Volume Storm Trend indicator is a powerful tool for traders
    looking to enhance their market analysis with volume and momentum insights, providing a clear and visually appealing representation of key market dynamics.

오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?