[VSA] Volume Spread Analysis - Page 43 - Traders Laboratory

Go Back   Traders Laboratory > Technical Laboratory > Volume Spread Analysis

Volume Spread Analysis Dedicated forum for VSA traders.


Reply
 
LinkBack (30) Thread Tools Display Modes
  #421 (permalink)  
Old 09-28-2007, 08:17 PM
VictorH has no status.

 
Join Date: Sep 2007
Posts: 2
Thanks: 0
Thanked 2 Times in 1 Post
Re: [VSA] Volume Spread Analysis Part II

Hello rayl54292,

This is my first post on this forum.
I was interested in the chart in your last post [3] and your comment about “input and brutal honesty”

This is my analysis of VSA in terms of looking at Volume and Standard Deviation levels.

The use of the Normal Standard Distribution curve can result in Negative Value Levels ( ie. for the Lower Standard Deviation levels ).

Volume can only be a Positive Value, hence I use a LOG Normal Distribution of Volume to assess the Standard Deviation levels. This gives levels which are always Positive. The following Amibroker Code shows what I am referring to.
I believe TG uses this approach also. Is this what you do also ?

All feedback on this line of thinking is most welcome.

Regards,
V

LBP = Param("Look Back", 30, 0, 100,1 ); Mean = MA(ln(V),LBP); StD = StDev(ln(V),LBP); xp3 = exp(mean + 3*std); xp2 = exp(mean + 2*std); xp1 = exp(mean + 1*std); xm = exp(mean); xn1 = exp(mean - 1*std); xn2 = exp(mean - 2*std); Plot(xp3,"", 1,1|4096); Plot(xp2,"", 1,1|4096); Plot(xp1,"", 1,1|4096); Plot(xm, "", 29,1|4096); Plot(xn1,"", 1,1|4096); Plot(xn2,"", 1,1|4096); Clr = IIf(V>Ref(V,-1),29,32); Plot(V,"",Clr,6);

Reply With Quote
The Following 2 Users Say Thank You to VictorH For This Useful Post:
NAVEEVIa (03-21-2008), paras (06-06-2008)
  #422 (permalink)  
Old 09-29-2007, 04:31 AM
RAVIN has no status.

 
Join Date: Sep 2007
Posts: 103
Thanks: 0
Thanked 14 Times in 13 Posts
Re: [VSA] Volume Spread Analysis Part II

Quote:
View Post


The last trade ended up going for 60 points, too...I didn't have time to sit and manage it though. But, VSA came to save the day once again!
DAX Trading was exciting too. CLASSIC ENTRY ON THE CURSOR, LOW VOL TEST, PURE VSA. Exited rather early at S1, expecting it to act as resistance, however there was an opportunity to jump aboard again, but was ruminating over how did I miss that 100pt drop

Looking at your YM chart and the second trade, there was a similar opportunity to go long on the classic down bar test on low vol.
Attached Images
File Type: jpg DAX 5MIN.JPG (133.7 KB, 44 views)

Reply With Quote
  #423 (permalink)  
Old 09-29-2007, 08:20 AM
RAVIN has no status.

 
Join Date: Sep 2007
Posts: 103
Thanks: 0
Thanked 14 Times in 13 Posts
Re: [VSA] Volume Spread Analysis Part II

Correction TG,

After your 1st trade (which was stopped out), there was a classic test on low vol, ideal signal to go long as per VSA

Reply With Quote
  #424 (permalink)  
Old 09-29-2007, 01:37 PM
rayl54292 has no status.

 
Join Date: Aug 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: [VSA] Volume Spread Analysis Part II

Quote:
View Post
Hello rayl54292,

This is my first post on this forum.
I was interested in the chart in your last post [3] and your comment about “input and brutal honesty”

This is my analysis of VSA in terms of looking at Volume and Standard Deviation levels.

The use of the Normal Standard Distribution curve can result in Negative Value Levels ( ie. for the Lower Standard Deviation levels ).

Volume can only be a Positive Value, hence I use a LOG Normal Distribution of Volume to assess the Standard Deviation levels. This gives levels which are always Positive. The following Amibroker Code shows what I am referring to.
I believe TG uses this approach also. Is this what you do also ?

All feedback on this line of thinking is most welcome.

Regards,
V

LBP = Param("Look Back", 30, 0, 100,1 ); Mean = MA(ln(V),LBP); StD = StDev(ln(V),LBP); xp3 = exp(mean + 3*std); xp2 = exp(mean + 2*std); xp1 = exp(mean + 1*std); xm = exp(mean); xn1 = exp(mean - 1*std); xn2 = exp(mean - 2*std); Plot(xp3,"", 1,1|4096); Plot(xp2,"", 1,1|4096); Plot(xp1,"", 1,1|4096); Plot(xm, "", 29,1|4096); Plot(xn1,"", 1,1|4096); Plot(xn2,"", 1,1|4096); Clr = IIf(V>Ref(V,-1),29,32); Plot(V,"",Clr,6);
Victor H,

Fished the Std info from a PivotProfiler post http://www.traderslaboratory.com/for...5-post143.html :

"We also look at the individual volume histogram by itself. Here we are looking at actual size (amount does not matter). A 30 period moving average can be used to determine if volume is greater than average or less than average. If you put a 2.0 standard deviation of that 30 average on the chart as well, then you could call all volume histogram bars greater than that line high. You could also place a 3.0 standard deviation of the average on the chart and call all volume histogram bars greater than that Ultra High Volume. This is basically what TG does."

tradestation code:

var: avg(0), sDev(0);

avg=average(v,30);
sDev=standardDev(v,30,1);

plot1(avg+3*sDev,"+3");
plot2(avg+2*sDev,"+2");

Not a programer, got code from tradestation fourm.

R

Reply With Quote
  #425 (permalink)  
Old 09-29-2007, 07:41 PM
VictorH has no status.

 
Join Date: Sep 2007
Posts: 2
Thanks: 0
Thanked 2 Times in 1 Post
Re: [VSA] Volume Spread Analysis Part II

Hello rayl54292

Thanks for your reply. I was aware of Pivotprofiler’s calculations for St Dev levels. I think the present TS Calculation (as you have shown) is flawed when you apply the basic principles of statistics to Volume.

If you apply the TS coding and plot the following lines you will get positive and negative values.

Plot3(avg-2*sDev,"-2");
Plot4(avg-3*sDev,"-3");

Now, do you still have faith in the following 2 lines ???

Plot1(avg+3*sDev,"+3");
Plot2(avg+2*sDev,"+2");

Calculations based on Lognormal do not create negative values.

In the overall scheme of things, the actual calculation is probably trivial and of minor consequence to trading outcomes. “High Volume” is still “High Volume”.

Keep up the excellent posts on VSA.

Regards,
V

Reply With Quote
  #426 (permalink)  
Old 10-01-2007, 11:48 AM
TinGull's Avatar
TinGull has no status.

Trader Specs
 
Join Date: Oct 2006
Location: Stockton Springs, Maine
Posts: 1,464
Thanks: 0
Thanked 17 Times in 7 Posts
Send a message via AIM to TinGull
Re: [VSA] Volume Spread Analysis Part II


Reply With Quote
  #427 (permalink)  
Old 10-01-2007, 12:01 PM
TinGull's Avatar
TinGull has no status.

Trader Specs
 
Join Date: Oct 2006
Location: Stockton Springs, Maine
Posts: 1,464
Thanks: 0
Thanked 17 Times in 7 Posts
Send a message via AIM to TinGull
Re: [VSA] Volume Spread Analysis Part II


Reply With Quote
  #428 (permalink)  
Old 10-01-2007, 01:25 PM
rayl54292 has no status.

 
Join Date: Aug 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: [VSA] Volume Spread Analysis Part II

[quote=VictorH;20736]Hello rayl54292

Thanks for your reply. I was aware of Pivotprofiler’s calculations for St Dev levels. I think the present TS Calculation (as you have shown) is flawed when you apply the basic principles of statistics to Volume.

If you apply the TS coding and plot the following lines you will get positive and negative values.

Plot3(avg-2*sDev,"-2");
Plot4(avg-3*sDev,"-3");

Now, do you still have faith in the following 2 lines ???

Plot1(avg+3*sDev,"+3");
Plot2(avg+2*sDev,"+2");

Calculations based on Lognormal do not create negative values.

In the overall scheme of things, the actual calculation is probably trivial and of minor consequence to trading outcomes. “High Volume” is still “High Volume”.

Keep up the excellent posts on VSA.

Regards,
V[/QUOTE

V,

Thank you for the feedback, appreciate that.


R.

Reply With Quote
  #429 (permalink)  
Old 10-01-2007, 01:37 PM
rayl54292 has no status.

 
Join Date: Aug 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: [VSA] Volume Spread Analysis Part II

Hello.

Just wanted to share some intraday VSA/harmonics combinations.

Attached is 15 min IWM chart over past few days. points X,A,B,C,D form a bullish gartley pattern ( http://www.harmonictrader.com/price_patternsgartley.htm ). Test bar (I believe it to be a test) confirms the pattern.

I trade the ER2 of an IWM chart, less noise IMHO, and do not hold over the weekend, thus my entry was the second signal, confirmation (result) after effort to rise.

R
Attached Images
File Type: jpg IWM_15.JPG (112.4 KB, 37 views)

Reply With Quote
  #430 (permalink)  
Old 10-02-2007, 07:14 AM
EyeQue has no status.

 
Join Date: Feb 2007
Posts: 4
Thanks: 18
Thanked 0 Times in 0 Posts
Re: [VSA] Volume Spread Analysis Part II

Hi TinGull and others:

Excellent Threads. Because of these threads, I am currently analyzing information provided in these threads and the VSA book. After I get comfortable, I will start posting.

Regards,

EyeQue

Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f151/vsa-volume-spread-analysis-1369.html
Posted By For Type Date
[VSA] Volume Spread Analysis - Page 145 - Traders Laboratory This thread Refback 01-31-2008 06:42 PM
Using TG EOD This thread Refback 01-30-2008 05:43 PM
S&P analysis for Friday 2nd Oct - Page 2 - T2W Day Trading & Forex Forums This thread Refback 01-30-2008 11:34 AM
S&P analysis for Friday 2nd Oct - Page 7 - T2W Day Trading & Forex Forums This thread Refback 01-25-2008 10:38 PM
[VSA] Volume Spread Analysis - Page 140 - Traders Laboratory This thread Refback 01-24-2008 07:06 PM
S&P analysis for Friday 2nd Oct - Page 14 - T2W Trading Forums This thread Refback 01-18-2008 05:09 PM
Forums - ES Analysis for Friday 2nd Nov This thread Refback 01-18-2008 05:08 PM
Forums - ES Analysis for Friday 2nd Nov This thread Refback 01-18-2008 05:03 PM
yamworld's Investment: November 2007 This thread Refback 12-21-2007 10:11 AM
S&P analysis for Friday 2nd Oct - Page 13 - T2W Trading Forums This thread Refback 12-13-2007 02:32 PM
S&P analysis for Friday 2nd Oct - Page 12 - T2W Trading Forums This thread Refback 12-10-2007 03:41 AM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 12-04-2007 04:28 PM
yamworld's Investment: 投資書 This thread Refback 12-04-2007 03:39 AM
Trade+Guider - Pagebull results 1 to 12 This thread Refback 11-16-2007 06:37 PM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 11-15-2007 06:00 PM
Refinance Heloc - bond heloc refinance, heloc list This thread Refback 11-15-2007 08:11 AM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 11-12-2007 06:23 PM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 11-12-2007 10:58 AM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 11-12-2007 06:29 AM
S&P analysis for Friday 2nd Oct - Page 3 - Trade2Win Boards This thread Refback 11-12-2007 06:26 AM
yamworld's Investment: Volume Spread Analysis This thread Refback 10-25-2007 11:16 AM
s0ren's bookmarks tagged with This thread Refback 10-03-2007 09:03 AM
Traders Laboratory - forumdisplay This thread Refback 09-15-2007 05:56 AM
Volume - how to trade? jom diskusi.. - Page 3 - Nogold.com This thread Refback 08-22-2007 09:47 AM
TradeSignal online - Die größte deutschsprachige Community für Charting und Technische Analyse This thread Refback 07-11-2007 05:07 AM
TradeSignal online - Die größte deutschsprachige Community für Charting und Technische Analyse This thread Refback 07-10-2007 05:21 AM
TradeSignal online - Die größte deutschsprachige Community für Charting und Technische Analyse This thread Refback 07-10-2007 04:54 AM
yamworld: Volume Spread Analysis This thread Refback 06-10-2007 01:52 PM
yamworld This thread Refback 05-20-2007 02:38 PM