| Volume Spread Analysis Dedicated for VSA method and trading. |
![]() | | Tweet | |
| | #1 | ||
![]() | [VSA] Volume Spread Analsysis Part III The market opened higher than yesterday’s close, fell off over the first 15 minutes to A, and then tried to rally. B – the rally to B did not bring out demand, and the bars at B were weak, closing on their lows. C – A very weak bar with an increase in spread and volume to the downside. Supply came into the market here. D – No demand on the first rally after weakness appeared and a good short. E – Volume drops off as the market moves lower into the area of yesterday’s close. F – A bottom reversal on good spread indicating demand. G – the market tests the lows of E/F and is unable to draw supply. As it begins to rally, it tests again at G1. H – An increase in volume with a good close, but the spread narrows – caution for longs. J – Down bar, on wide spread and high volume shows supply has reentered the market. J – No Demand followed by a small hidden upthrust. K – Again we come back into the lows and find no supply and the market rallies. T – Tests occur below the resistance at I indicating a rally and a break of I. L – small bottom reversal/key reversal bar which tests for supply by dipping lower one last time before moving up to close on its high. M – Break through the resistance at I and a rally into the noon hour. Note that the volume falls off as we move into the noon hour and come into the morning supply at A. Hope this is helpful, Eiger
__________________ My Website for Trader Performance | ||
| |
|
| The Following 15 Users Say Thank You to Eiger For This Useful Post: | ||
bisecom (09-13-2009), eosFX (03-10-2011), ggs14u (06-30-2009), johnnyguitar (07-26-2009), kuky969 (05-06-2009), MANTRA (05-09-2009), manusingh (11-30-2010), nguyenvanlanh (10-10-2010), radicalboy (12-30-2011), SAM HOLLANDER (05-12-2009), Sledge (05-07-2009), Soultrader (05-07-2009), Tasuki (05-06-2009), teodosy87 (05-07-2009), trader_08 (05-19-2009) | ||
| | #2 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III As you can see from the attached chart, it doesn't work so hot. All the vertical lines are places where the volume was less than the previous 2 bars, but it didn't get a blue color added to it. I'm not sure why that is. If someone can fix it so it correctly shows each and every instance where the volume of a given bar is less than the previous two, I'd be very grateful. As it is, the indicator does have some value, especially when you get multiple bars with decreasing volume. It just gives you a visual cue that can be especially helpful when scanning charts. Good trading all, Tasuki | ||
| |
|
| The Following 2 Users Say Thank You to Tasuki For This Useful Post: | ||
Eiger (05-06-2009), pathfinder62 (05-25-2009) | ||
| | #3 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III Quote:
Eiger
__________________ My Website for Trader Performance | ||
| |
|
| The Following 2 Users Say Thank You to Eiger For This Useful Post: | ||
humdesggg (05-08-2009), pathfinder62 (05-25-2009) | ||
| | #4 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III It is chart 5 min ES yesterday. http://www.sierrachart.com/userimage...ploadImage.png After spring (S) bar 12,30 -- 12,35 h. I looked for test bar but I didnt find, so I didnt take long trade. It is chart 5 min ES yesterday too,but every bar starts 9,37 -- 9,42,--- 9,47 h....... http://www.sierrachart.com/userimage...ploadImage.png Here I see test (T) in bar 12,37-12,42h. What is your opininion. It is good take long trade after this test bar ??? Thank you | ||
| |
|
| | #5 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III Quote:
I've been hesitant to post the volume indicator I am using because I am not a very efficient programmer and also don't really want to start supporting indicators, but here it goes... Maybe someone can use this as a building block, or optimize the code. The colors used are: Green = Regular up bar Dark Green = No Demand Red = Regular down bar Dark Red = No Supply White = Same close than previous bar on higher volume Yellow = Same close than previous bar on lowest volume in two bars Magenta = Highest Volume of last two bars, smallest range of last two bar and at a 5 bar high or low. I also plot the 20 bar moving average of volume and 1.5 and 2 times the average volume. I am using MultiCharts, but the code should compile on tradestation. Code: inputs: PlotAvg(True),
AvgLength(20 ),
Val1(1.5),
Val2(2),
UpColor(Green),
DownColor(Red),
NoDemandColor(DarkGreen),
NoSupplyColor(DarkRed),
ChurnColor(magenta);
variables:
Vol( 0 ),
VolAvg( 0 ),
StdVal(0),
Body(0);
If BarType >= 2 then Vol = Volume else Vol = Ticks;
VolAvg = AverageFC(Vol, AvgLength ) ;
StdVal = StandardDev(Vol, AvgLength, 1) ;
Plot1(Vol, "Vol" );
If PlotAvg then begin
Plot2(VolAvg, "VolAvg" ) ;
Plot3(VolAvg * Val1,"SDV1");
Plot4(VolAvg * Val2,"SDV2");
end;
if C > C[1] then begin
SetPlotColor( 1, UpColor );
If Vol < Lowest(Vol,2)[1] then SetPlotColor(1,NoDemandColor);
end
else if C < C[1] then begin
SetPlotColor( 1, DownColor ) ;
If Vol < Lowest(Vol,2)[1] then SetPlotColor(1,NoSupplyColor);
end
else begin
if C = C[1] then SetPlotColor(1,White);
If Vol < Lowest(Vol,2)[1] then SetPlotColor(1,Yellow);
end;
If (Vol > Vol[1] and Vol > Vol[2]) and Range <= Lowest(Range,2)[1] and
(High = Highest(High,5) or Low = Lowest(low,5)) then SetPlotColor(1,ChurnColor); | ||
| |
|
| | #6 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III | ||
| |
|
| The Following User Says Thank You to teodosy87 For This Useful Post: | ||
Eiger (05-07-2009) | ||
| | #7 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III Quote:
Thanks for posting this. I am glad you did -- it's a big help. FWIW - For volume, I have always used a standard deviation function off the 20-period SMA of the volume. Even though our data is not normally distributed, the standard deviation function gives us a pretty good sense of the probabilities of the volume bar. We know, for example, that about 68 percent of all individual volume bars should fall within one SD of the mean. When the volume hits or exceeds 2 SDs,we know it can be significant (either producing an impulse move when pushing though a trading range or stopping/climactic volume). An upper Bollinger Band applied to the volume or a SD function both do the same job. Hope this is helpful, Eiger
__________________ My Website for Trader Performance | ||
| |
|
| The Following 2 Users Say Thank You to Eiger For This Useful Post: | ||
pathfinder62 (05-25-2009), Tams (05-07-2009) | ||
| | #8 | ||
![]() | re: [VSA] Volume Spread Analsysis Part III Quote:
So, how would you know whether a spring has high odds or not. Your chart has all the characteristics I look for in a spring: First, the background. Here, the market is in an uptrend. It has made higher highs and higher lows. Springs do not work well in a downtrend. I never take a spring when the trend is down unless a clear SOS and a base (cause) have occured. When I see an uptrend in place, I start thinking pullbacks and springs. Note that once again, the all-important background is always the first consideration. What is particularly nice about this spring is that there was a reaction back to support on relatively light volume. This is a choice setup; I really like this look. It is described in the Wyckoff texts as a Jump Across the Creek, and then a Back Up to the the Edge of the Creek. The creek represents supply and the jump across the creek indicates a sign of strength. The market will frequently come back to the edge of the creek and test, as it did here. Testing in this context means not on a single bar as in VSA, but coming back into the area of supply (red curved line) aand testing it to make sure no additional supply is there which would thwart an up move. Volume on the reaction was lighter than the rally. The bar before the Sping was telling. That bar looked ominous, closing on its low and closing lower than the closes of the last four bars. Volume did not increase substantially, however, and the spring bar dipped lower, turned around, closed on its highs, and volume came in. If you were watching this bar develop real time, you would have seen the volume come in as the bar rallied up - this is demand off the bottom. The spring bar is also a bottom reversal in VSA terms, so it had that going for it, too. The final piece to this is that the spring bar was powerful enough to come right up to the minor supply line of the reaction. Any further advance in price would take out this line, which occured shortly thereafter. Regarding switching how the chart displays the bars to look for confirmation -- I personally wouldn't do that. This is akin to committing "confirmation bias," or looking for indications you normally don't look at to support a decision. It is better to either study springs until you are completely confident in trading them without a test for confirmation or specifying that a spring must be confirmed by a test and if a test does not occur, just let the trade pass. Either is perfectly fine. If your criteria includes a test and a test does not occur, so what. A trade was missed. No big deal. There is always another good trade coming just around the next corner. If you note on the chart after rallying aggressively off the spring, the market moved up above the last high (HH) making another new high, rested, held its gains, and gave a nice VSA Test for entry (green arrow). Hope this is helpful, Eiger
__________________ My Website for Trader Performance | ||
| |
|
| The Following 6 Users Say Thank You to Eiger For This Useful Post: | ||
kuky969 (05-07-2009), MANTRA (05-09-2009), robertbumbalough (09-08-2010), SAM HOLLANDER (05-12-2009), Sledge (07-05-2009), Soultrader (05-07-2009) | ||
![]() |
| Tags |
| eiger, vsa, wyckoff |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [VSA] Volume Spread Analysis Part I | TinGull | Volume Spread Analysis | 1559 | 06-22-2009 12:13 AM |
| Volume Spread Analysis for MT4 | FOREXflash | Forex Trading Laboratory | 25 | 05-31-2009 09:52 AM |
| [VSA] Volume Spread Analysis Part II | Soultrader | Volume Spread Analysis | 2244 | 05-06-2009 02:22 PM |
| The Basics of Volume Part 1 | Martin Pring | Trading Articles | 13 | 02-28-2008 05:50 PM |
| Volume Spread Analysis with TradeGuider | Soultrader | Scheduled Chat | 15 | 03-31-2007 05:51 AM |