Welcome to the Traders Laboratory Forums.
Market Profile Are you a market profile trader? Post here.

Reply
Old 01-09-2008, 10:46 PM   #1

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts

VWAP Distribution Set-Up: '2 Std Devs & a Div'

This thread is just to publicly evaluate a set-up I have been working on. comments appreciated.

I will call it the '2 std devs and a divergence' set-up.

Concept: If S&P futures move 2 standard deviations in a direct move (without a decent correction) AND form a momentum divergence (using LBR's 3/10 oscillator) -- then fade the move for a SCALP targeting roughly 1 deviation.

1st example from Tuesday Jan 8:

Attached Thumbnails
VWAP Distribution Set-Up: '2 Std Devs & a Div'-0108-tue-2-std-dev-setup.png  
Frank is offline  
Reply With Quote
Old 01-09-2008, 10:56 PM   #2

Join Date: Jan 2008
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

Quote:
Originally Posted by Frank »
This thread is just to publicly evaluate a set-up I have been working on. comments appreciated.

I will call it the '2 std devs and a divergence' set-up.

Concept: If S&P futures move 2 standard deviations in a direct move (without a decent correction) AND form a momentum divergence (using LBR's 3/10 oscillator) -- then fade the move for a SCALP targeting roughly 1 deviation.

1st example from Tuesday Jan 8:

Hi Frank,

I am very interested in this thread. I have a newbie question... how do you calculate your standard deviations?
osaru is offline  
Reply With Quote
Old 01-09-2008, 10:59 PM   #3

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts

Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

hi,

the code comes from a Traders Lab post... Here is the tradestation code I am presently using (1-min chart is used on ES.D):


vars:
PriceW(0),
ShareW(0),
Count(0),
VolWAPValue(0),
VolWAPVariance(0),
VolWAPSD(0);

if date > date[1] then begin
PriceW = 0;
ShareW = 0;
Count = -1;
Value1 = 0;
Value2 = 0;
VolWAPValue = 0;
end;
PriceW = PriceW + (AvgPrice * (UpTicks+DownTicks));
ShareW = ShareW + (UpTicks+DownTicks);
Count = Count + 1;
Value3 = 0;
if ShareW > 0 then VolWAPValue = PriceW / ShareW;
{Calculate the individual variance terms for each intraday bar starting with the current
bar and looping back through each bar to the start bar. The terms are each normalized
according to the Variance formula for each level of volume at each price bar }
For Value1 = 0 To Count Begin
Value2 = ((UpTicks[Value1]+DownTicks[Value1])/ShareW) * (Square(AvgPrice[Value1]-VolWAPValue));
Value3 = Value3 + Value2;
End;
VolWAPVariance = Value3;
VolWAPSD = SquareRoot(VolWAPVariance );
Plot1(VolWAPValue, "VWAP");
Plot2(VolWAPValue + VolWAPSD, "VWAP1SDUp");
Plot3(VolWAPValue - VolWAPSD, "VWAP1SDDown");
Plot4(VolWAPValue + (2*VolWAPSD), "VWAP2SDUp");
Plot5(VolWAPValue - (2*VolWAPSD), "VWAP2SDDown");
Frank is offline  
Reply With Quote
Old 01-09-2008, 11:01 PM   #4

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts

Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

remember, this is just a scalp.

Set-Up for Wednesday Jan 8:

Attached Thumbnails
VWAP Distribution Set-Up: '2 Std Devs & a Div'-0109-wed-2-std-dev-setup.png  
Frank is offline  
Reply With Quote
Old 01-10-2008, 04:51 PM   #5

Join Date: Jan 2008
Location: San Francisco
Posts: 394
Ignore this user

Thanks: 17
Thanked 338 Times in 156 Posts

Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

there was no set-up all day today for this. the market was moving 1 deviation at a time and therefore 'self-correcting' along the way..

There was one moment that was really close though and I was watching for an entry but it didn't happen. I will watch to see if this should be included in the set-up in the future (2 std devs and a higher low -- 'turn up in the oscillator).

Attached Thumbnails
VWAP Distribution Set-Up: '2 Std Devs & a Div'-0110-thu-2-std-dev-setup.png  
Frank is offline  
Reply With Quote

Reply

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
VWAP Indicator with 1SD and 2SD bands dbntina Trading Indicators 123 01-07-2011 03:42 PM
Random Comment Regarding Volume Distribution Dogpile Market Profile 22 08-10-2008 10:12 AM
Final 'Volume Distribution' Commentary Dogpile Market Profile 4 11-22-2007 11:02 AM
VWAP gradient waveslider Coding Forum 1 11-06-2007 01:01 AM
VWAP wtf? Dogpile Market Profile 5 09-21-2007 11:35 AM

All times are GMT -4. The time now is 03:51 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.