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

Go Back   Traders Laboratory > Trading Laboratory > Market Profile®

Market Profile® Are you a market profile trader? Post here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-09-2008, 10:46 PM
Frank Frank is offline
Frank has no status.

 
Join Date: Jan 2008
Posts: 40
Thanks: 0
Thanked 66 Times in 19 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 Images
File Type: png 0108 Tue 2 Std Dev Setup.png (28.4 KB, 184 views)

Reply With Quote
  #2 (permalink)  
Old 01-09-2008, 10:56 PM
osaru osaru is offline
osaru has no status.

 
Join Date: Jan 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

Quote:
View Post
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?

Reply With Quote
  #3 (permalink)  
Old 01-09-2008, 10:59 PM
Frank Frank is offline
Frank has no status.

 
Join Date: Jan 2008
Posts: 40
Thanks: 0
Thanked 66 Times in 19 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");

Reply With Quote
  #4 (permalink)  
Old 01-09-2008, 11:01 PM
Frank Frank is offline
Frank has no status.

 
Join Date: Jan 2008
Posts: 40
Thanks: 0
Thanked 66 Times in 19 Posts
Re: VWAP Distribution Set-Up: '2 Std Devs & a Div'

remember, this is just a scalp.

Set-Up for Wednesday Jan 8:

Attached Images
File Type: png 0109 Wed 2 Std Dev Setup.png (26.7 KB, 174 views)

Reply With Quote
  #5 (permalink)  
Old 01-10-2008, 04:51 PM
Frank Frank is offline
Frank has no status.

 
Join Date: Jan 2008
Posts: 40
Thanks: 0
Thanked 66 Times in 19 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 Images
File Type: png 0110 Thu 2 Std Dev Setup.png (34.6 KB, 169 views)

Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
VWAP Indicator with 1SD and 2SD bands dbntina Trading Indicators 70 03-14-2008 05:36 PM
Final 'Volume Distribution' Commentary Dogpile Market Profile® 4 11-22-2007 11:02 AM
Random Comment Regarding Volume Distribution Dogpile Market Profile® 8 11-22-2007 09:35 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 09:20 PM.

 


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63