Jump to content

ABC's of VSA


DrTong

Recommended Posts

Greetings all

 

I was wondering if anyone has the abc's of vsa tutorials by lauren snedecker as well as theory of VSA that used to be on the tradeguider youtube channel. i only watched them half way before they were taken down. Absolutely bleeding i didn't record them.

 

cheers

Link to comment
Share on other sites

  • 1 month later...

Can also work for fx but using tick volume instead of actual volume. There is high correlation between tick volume and actual volume especially at higher time frame based on paper research carried out by others.

 

Only problem is the tick volume data is confined to own broker data feed. Need data feed that combined many brokers like esignal or broker that provided similar data feed. Understand that IBFX is one of them based on information from other forum.

Link to comment
Share on other sites

Only problem is the tick volume data is confined to own broker data feed.

 

If I'm not mistaken the tick volume is a calculated value based on the Open, High, Low & Close of a bar in relation to the Open, High, Low & Close of the preceeding bar and it looks like this:

 

DEF V1 = ((HIGH - CLOSE[1]) * ((CLOSE[1]) < CLOSE));
DEF V2 = ((CLOSE[1] - LOW) * ((CLOSE[1]) > CLOSE)) ;
DEF V11 = ((HIGH - CLOSE[1]) * ((OPEN) < CLOSE));
DEF V12 = ((CLOSE[1] - LOW) * ((OPEN) > CLOSE)) ;

plot Data = IF (V1 + V2) > 0 
THEN ((V1 + V2) )
ELSE IF(V11 + V12) > 0 
THEN ((V11 + V12))
ELSE IF ((HIGH - CLOSE[1]) > (CLOSE[1] - LOW))
THEN ((HIGH - CLOSE[1]) )
ELSE ((CLOSE[1] - LOW) );

Plot this indicator as a histogram to get it to look like a volume.

An alternate tick volume indicator (TVI) uses the upticks and downticks to make the Tick Volume Indicator that was invented by William Blau and has been published in his book "Momentum, Direction and Divergence" (1995, page 43).

http://codebase.mql4.com/7980.

Edited by Bill Bundle
Link to comment
Share on other sites

Here is one link on article on tick volume for your understanding.

 

Regards

John Lui

 

Good article, John. Apparently, there are other names and formulas for this "simulated" volume. Stock markets are the only real sources of real volume, because of regulatory requirements. There's still some stock trading volumes that are not officially recorded and not given to the public. Thanks for the article.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...