Go Back   Traders Laboratory > Trading Resources > Trading Indicators

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

Comment
Bookmarks
del.icio.us StumbleUpon Google Digg Facebook Furl Reddit Netscape

 
LinkBack (1) Release Tools Display Modes Language
Volume Delta Oscillator
Software Version: , by Soultrader (Founder of TL!) Soultrader is offline
Developer Last Online: May 2008

Trading Platform: Rating: -
Release Date: 02-02-2007 Last Update: n/a Installs: 39

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 Walterw for creating this indicator. Screenshot is attached.

Show Your Support

  • To receive notifications regarding updates -> Click to Mark as Installed.
  • If you like this indicator, please consider donating to the developer.
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.
 
By jperl on 12-08-2007, 10:10 AM
Re: Volume Delta Oscillator

James or Walter, for those of us who do not use TS, would you explain how this oscillator is computed?
JERRY
Reply With Quote
  1 links from elsewhere to this Post. Click to view. #1 (permalink)  
By Blu-Ray on 12-08-2007, 10:18 AM
Re: Volume Delta Oscillator

Quote:
View Post
James or Walter, for those of us who do not use TS, would you explain how this oscillator is computed?
JERRY
Jerry

Here's a copy of the code for you

[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 ), 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); plot6 (average(plot2, av)); plot7 (average(plot4,av)); plot8 (average(plot5,av)); 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);
Hope this helps

Blu-Ray
Reply With Quote
  #2 (permalink)  
By jperl on 12-08-2007, 11:28 AM
Re: Volume Delta Oscillator

Quote:
View Post
Jerry

Here's a copy of the code for you

[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 ), 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); plot6 (average(plot2, av)); plot7 (average(plot4,av)); plot8 (average(plot5,av)); 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);
Hope this helps

Blu-Ray
Well, not quite Blu-Ray. I see in the code that down tick volume is subtracted from the uptick volume. What I don't understand is how this becomes an oscillator. Perhaps you can explain it for us.
JERRY
Reply With Quote
  #3 (permalink)  
By Blu-Ray on 12-08-2007, 11:53 AM
Re: Volume Delta Oscillator

Jerry

I've never used it, I just downloaded it to get the code for you.

Just quickly looking at the code and using the default settings:


It's based on an 2 period ema of the upticks - downticks. Then that value is put into a 3 period sma and the 1st line is plotted.

Then the 2nd line is a 3 period sma of the first line.



Hope this helps

Blu-Ray
Reply With Quote
  #4 (permalink)  
By jperl on 12-08-2007, 12:09 PM
Re: Volume Delta Oscillator

Quote:
View Post
Jerry

I've never used it, I just downloaded it to get the code for you.

Just quickly looking at the code and using the default settings:


It's based on an 2 period ema of the upticks - downticks. Then that value is put into a 3 period sma and the 1st line is plotted.

Then the 2nd line is a 3 period sma of the first line.



Hope this helps

Blu-Ray
Ok thanks for the explanation
Reply With Quote
  #5 (permalink)  
By drsushi on 02-13-2008, 06:50 PM
Re: Volume Delta Oscillator

James,

Regardless of the form this indicator comes in, do you believe that watching for divergence in price versus the OSC is valid for entry near S/R. In other words, is this indicator a true representation for buying and selling pressure? I'm fairly new to trading and have been interested in trading more via price action than with indicators, but in looking at this indicator is seems to do a good job of displaying possible change of direction via divergence fairly well. Am I accurate in my assumption? If so, it seem extreamly powerful.

On another topic I believe you use Market Profile in your trading. Correct me if I'm wrong. Can MP be as simplistic as using VAH, VAL and POC's as support and resistance and watching how price behaves in these areas and trade accordingly, or is it/does it need to be more complicated than that? Thanks.

David
Reply With Quote
  #6 (permalink)  
By Soultrader on 02-14-2008, 01:25 AM
Re: Volume Delta Oscillator

Hi David,

I will not vouch for any indicator simply because I do not use them. If you can read volume and price bars volume delta related indicators are not necessary. However it can be a good tool to visually aid you to see price and volume divergence.

Regarding MP... you can choose to make it as simple as that or more complex than that. It comes down to how you want to use MP in your trading.Are you going to combine MP with other techniques or use MP as a stand alone trading tool? On top of MP pivots like VAH, VAl, POC.... I personally prefer to watch for pattern recognition so I know what type of day we may have. This allows me to place trades accordingly.
Reply With Quote
  #7 (permalink)  
By LS_Chad on 02-14-2008, 07:48 AM
Re: Volume Delta Oscillator

Here is a Volume Delta chart for Investor/RT:

http://www.charthub.com/images/2008/...olumeDelta.png

In the second pane, the buying volume is shown in light green, the selling volume in light red, and the delta in darker shades of green and red, using the Volume Breakdown Indicator.

Reply With Quote
  #8 (permalink)  
By Soultrader on 02-14-2008, 08:00 AM
Re: Volume Delta Oscillator

What are the settings for the volume breakdown indicator to get it into the format as the chart?
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
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

vB 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
Release Release Starter Category Comments Last Post
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 Indicator Soultrader Trading Indicators 18 10-27-2007 02:07 PM
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 09:59 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