The VWAP Range indicator is a highly versatile and innovative tool designed with trading signals for trading the supply and demand within consolidation ranges. What's a VWAP? A VWAP (Volume Weighted Average Price) represents an equilibrium point in the market, balancing supply and demand over a specified period. Unlike simple moving averages, VWAP gives more...
This is my "Weekly/Daily/Hourly/Minutes Colored Background Intervals" assistant. I wouldn't describe it as an indicator, it just exhibits coloration of referenced periods of time with bgcolor() in Pine. With the arrival of 2021, I pondered the necessity of needing a visualization pre-2021 to visually recognize periodicity of market movements by the week, day,...
Simple script which marks out key swing highs & lows. One of the only indicators I have on the chart most days - perfect for naked charting - quickly helps you to visually identify key areas of interest An extension of Bill Williams fractals - aka short term swing points Allows you to filter for only the most prominent swing points - you can even overlay...
Simple script highlighting a vertical line on the last bar of the Day/ Week/ Month/ Hour/ H4/ minute etc. Helps maintain visibility of higher timeframes when on lower timeframes. Quickly identify end of period levels.
Just a quick way to have multiple periods. Coded at (14,50,100,200,400,600,800). Feel free to tweak it. Default is all on, obviously not as usable! Try just using 14, and 50. This was generated with javascript for easy templating. Source: ``` const periods = ; const generate = (period) => { const template = ` = bandFor(${period}) plot(b${period},...
Lines "Total Up Impulses" and "Total Down Impulses" are the sum of impulses in the last n periods (Length). line 1 => "Total Up Impulses": the sum of up impulses. line 2 => "Total Down Impulses": the sum of down impulses. When line 1 crosses up line 2, it indicates an uptrend is comming out. When line 1 crosses down line 2, it indicates a downtrend is comming out.