Volume Delta Oscillator - Page 2 - Traders Laboratory
Forum Guidelines | Contact Us
Home

Go Back   Traders Laboratory > Trading Resources > Trading Indicators

Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.


Comment
 
LinkBack (1) Release Tools
 
Old 02-02-2007, 08:49 AM
Soultrader's Avatar
Soultrader Soultrader is offline
Soultrader is focusing on discipline.

Trader Specs
 
Join Date: Aug 2006
Location: Tokyo, Japan
Posts: 3,218
Thanks: 162
Thanked 467 Times in 208 Posts
Send a message via Skype™ to Soultrader
This member is the original thread starter. Volume Delta Oscillator

Here is the oscillator version of the Volume Delta created by Walterw. It shows the flow of the Volume Delta very nicely. If you like them oscillators and price divergences, this one is for you.

All credits go out to Click here to read the entire release
Attached Images
File Type: jpg tickdeltaosc.jpg (76.4 KB, 1046 views)
Attached Files
File Type: eld VOLUME DELTA OSC.ELD (5.7 KB, 444 views)

__________________
James Lee - Founder
Forum Guidelines | Forum Manual | Support Coder | Report a Bug
------------------------------------------------------------------------------------
Empowering traders with knowledge.

Please support TL by visiting our sponsors. Thanks!
Reply With Quote
  #10 (permalink)  
By LS_Chad on 02-14-2008, 08:13 AM
Re: Volume Delta Oscillator

Quote:
View Post
What are the settings for the volume breakdown indicator to get it into the format as the chart?
I actually added Volume Breakdown three times to that second pane to get that result. The buy volume just uses "Result: Buy Volume". The sell volume uses "Result: Sell Volume (Negative)" and the delta uses "Result: Delta (Buy - Sell Vol)".
Reply With Quote
  #11 (permalink)  
By drsushi on 02-14-2008, 12:41 PM
Re: Volume Delta Oscillator

Soul,

My intension was to us MP pivots as well as floor pivots as S/R and trade those areas in addition to previous highs and lows for the previous day. I would watch price at the these respective pivots on a higher timeframe and moved down to ower timeframs to see if there are high or low failures depending on the direction and trade based on that.

Would you be willing to go into greater detail when you talk about pattern recognition? I read that you don't use things like triangles etc as patterns. I'm assuming you don't mean double tops or bottoms either. Also, how does this (these patterns)give you insight as to what kind of day we may have? If you have examples you can post that would be of great help to me. Thanks.

David
Reply With Quote
  #12 (permalink)  
By Soultrader on 02-14-2008, 01:31 PM
Re: Volume Delta Oscillator

Quote:
View Post
Soul,

My intension was to us MP pivots as well as floor pivots as S/R and trade those areas in addition to previous highs and lows for the previous day. I would watch price at the these respective pivots on a higher timeframe and moved down to ower timeframs to see if there are high or low failures depending on the direction and trade based on that.

Would you be willing to go into greater detail when you talk about pattern recognition? I read that you don't use things like triangles etc as patterns. I'm assuming you don't mean double tops or bottoms either. Also, how does this (these patterns)give you insight as to what kind of day we may have? If you have examples you can post that would be of great help to me. Thanks.

David
Hi David,

Could you start a new thread on this topic? I will post a few charts.
Reply With Quote
  #13 (permalink)  
By drsushi on 02-14-2008, 05:49 PM
Re: Volume Delta Oscillator

I started a new thread under the technical analysis section.

D
Reply With Quote
  #14 (permalink)  
By daedalus on 08-16-2008, 11:37 AM
Re: Volume Delta Oscillator

I really like this indicator as it can be very helpful for spotting divergences, however the MA overlayed on the indicator is bugging the hell out of me. It gets in the way of seeing the actual histogram. I've tried modifying the code myself to remove the MA but i'm just randomly deleting lines of code and re-verifying to see if it disappears.

Can anyone help?

Thanks!
Reply With Quote
  #15 (permalink)  
By forsearch on 08-16-2008, 06:23 PM
Re: Volume Delta Oscillator

Try this:

[LegacyColorValue = true]; Inputs: Up_Dn_MALen( 10 ), MAType_SMA_1_EMA_2_WMA_3( 2 ), MA_DisplayScalingFactor( 1 ), Plot_UpDn_1_or_Diff_2( 2 ), Plot_MA_1_or_Off_0(0), MA_DiffLen( 2 ), smooth(3), av (3); Variables: MA_Up( 0 ), MA_Dn( 0 ), MA_Diff( 0 ); If BarType <= 1 then { Use only on Intra-Day Time or Tick Bars } Begin { Moving Averages of Up&DownTicks and their Difference } If MAType_SMA_1_EMA_2_WMA_3 = 1 then Begin MA_Up = MA_DisplayScalingFactor * ( Average( UpTicks, Up_Dn_MALen ) ); MA_Dn = MA_DisplayScalingFactor * ( Average( DownTicks, Up_Dn_MALen ) ); MA_Diff = ( Average( UpTicks - DownTicks, MA_DiffLen ) ); End { If MAType_SMA_1_EMA_2_WMA_3 = 1 } Else If MAType_SMA_1_EMA_2_WMA_3 = 2 then Begin MA_Up = MA_DisplayScalingFactor * ( XAverage( UpTicks, Up_Dn_MALen ) ); MA_Dn = MA_DisplayScalingFactor * ( XAverage( DownTicks, Up_Dn_MALen ) ); MA_Diff = ( XAverage( UpTicks - DownTicks, MA_DiffLen ) ); End { If MAType_SMA_1_EMA_2_WMA_3 = 2 } Else { If MAType_SMA_1_EMA_2_WMA_3 = 3 } Begin MA_Up = MA_DisplayScalingFactor * ( WAverage( UpTicks, Up_Dn_MALen ) ); MA_Dn = MA_DisplayScalingFactor * ( WAverage( DownTicks, Up_Dn_MALen ) ); MA_Diff = ( WAverage( UpTicks - DownTicks, MA_DiffLen ) ); End; { If MAType_SMA_1_EMA_2_WMA_3 = 3 } {Plots Up&DownTicks and their selected Moving Averages or their Difference as desired} {The order of the plots insures proper visual presentation of the histogram bars} If Plot_UpDn_1_or_Diff_2 = 1 then Begin Plot2( MA_Up, "MA" ); Plot4( MA_Dn, "MA_Dn" ); End;{If Plot_UpDn_1_or_Diff_2 = 1} If Plot_UpDn_1_or_Diff_2 = 2 then Begin Plot5( average (MA_Diff,smooth), "MA" ); End;{If Plot_UpDn_1_or_Diff_2 = 2} End; { if BarType <= 1 } if plot2 > plot4 then setplotcolor (2,blue); if plot2 > plot4 then setplotcolor (4,blue); if plot2 < plot4 then setplotcolor (2,red); if plot2 < plot4 then setplotcolor (4,red); if Plot_MA_1_or_Off_0 <> 0 then begin plot6 (average(plot2, av)); plot7 (average(plot4,av)); plot8 (average(plot5,av)); end else begin NoPlot(6); NoPlot(7); NoPlot(8); end; if plot5 > plot8 then setplotcolor (5,blue); if plot5 > plot8 then setplotcolor (8,blue); if plot5 < plot8 then setplotcolor (5,red); if plot5 < plot8 then setplotcolor (8,red);
Use the Plot_MA_1_or_Off_0 input to toggle the display of the MAs on (1) and off (0).

-fs
Reply With Quote
  #16 (permalink)  
By daedalus on 08-16-2008, 06:55 PM
Re: Volume Delta Oscillator

Thanks forsearch!

Although, i think the wrong thing got turned off.

I verified your code and I turned on the ma in your code (changing 0 to 1) but the base data that comes up is not the plot, but the MA.

Hopefully this shows it, the one you posted is on the top, the stock one on the bottom.



I'd like to keep the PLOT8 values from the bottom indicator and get rid of the MA. If that makes sense?

Thanks again!
Attached Images
File Type: jpg 1.jpg (114.3 KB, 71 views)
Reply With Quote
  #17 (permalink)  
By forsearch on 08-16-2008, 07:00 PM
Re: Volume Delta Oscillator

Since I'm no longer a TS user, I just took a look at the code that was posted and gave it a quick one-off edit.

I'm sure someone who has TS or MC will give it a look for ya in due course.
Reply With Quote
  #18 (permalink)  
By BlowFish on 08-16-2008, 07:42 PM
Re: Volume Delta Oscillator

You could just set the plot to invisible when you apply the study perhaps?
Reply With Quote
Comment



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f46/volume-delta-oscillator-1154.html
Posted By For Type Date
Traders Laboratory - forumdisplay This thread Refback 12-08-2007 10:14 AM

Currently Active Users Viewing This Release: 1 (0 members and 1 guests)
 
Release Tools

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
Forum Jump

Similar Threads
Release Release Starter Category Comments Last Post
Volume Delta Indicator Soultrader Trading Indicators 22 08-18-2008 06:37 AM
Add-on For Heikin Ashii and Volume Delta Soultrader Trading Indicators 22 12-11-2007 09:01 AM
[Sellers vs Buyers with Heikin Ashii and Volume Delta] Soultrader Trading Videos 5 11-26-2007 02:30 AM
Volume Delta Analysis Thread Soultrader Technical Analysis 20 09-09-2007 09:34 PM
Where's the volume??? wsam29 Market Analysis 11 01-31-2007 05:21 AM


All times are GMT -4. The time now is 10:39 AM.

 

 
 


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 64 65 66 67 68 69 70 71 72 73 74 75 76