Welcome to the Traders Laboratory Forums.
Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.

Reply
Volume Bias Details »»
Volume Bias
Platform: EasyLanguage, by Tams Tams is offline
Developer Last Online: May 2012 Show Printable Version Email this Page

Platform: MultiCharts Rating: (1 votes - 5.00 average)
Released: 08-05-2009 Last Update: Never Installs: 25
Re-useable Code Translations Is in Beta Stage  
No support by the author.

Volume Bias


Description:

This indicator prints the Volume Bias on the chart

Volume Bias is calculated as Up Volume divided by Total Volume.
i.e. The percentage of total volume that has an upward bias.
When there are more up volume than down volume,
the display will show a larger than 50% bias.
Otherwise the display will show a smaller than 50% bias.


The background color will turn blue if the bias is over 55%,
or red if the bias is under 45%.
Otherwise the background will display a neutral color.

The display is formated as follow:
UpVolume: DownVolume=UpBias%

You may choose to display the bias at position 1 or 2
Position 1 refers to the top of the chart, 2 is at the bottom.






note:
This EasyLanguage indicator was written in MultiCharts.
I have not tested it in tradestation or other compatible programs.
Please refer to your users manual for importation instructions.

Translation to other platform is invited.

Download Now

File Type: pla Volume_Bias_(MultiCharts).pla (8.3 KB, 189 views)
File Type: txt Volume_Bias_(TS).txt (2.0 KB, 345 views)

Screenshots

Volume Bias-volume_bias.jpg  

Show Your Support

  • If you like to thanks you by the author -> Click Thanks to the Author
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.
The Following 13 Users Say Thank You to Tams For This Useful Post:
berrob (10-11-2010), bomberone1 (01-13-2011), cooper59 (01-01-2010), martas (08-30-2010), rjelles (08-26-2010), shrike (12-21-2009), simterann22 (08-23-2009), snoop (08-20-2010), teq56 (02-21-2011), TIKITRADER (08-05-2009), uufuk (11-20-2010), waverunner (08-23-2009), yiman (12-02-2009)

Comments
Old 08-16-2010, 10:27 AM   #42

zapisy's Avatar

Join Date: Jan 2009
Location: New York
Posts: 81
Ignore this user

Thanks: 6
Thanked 26 Times in 17 Posts

Re: Volume Bias

No problem

Lukas
zapisy is offline  
Reply With Quote
Old 09-02-2010, 02:36 AM   #43

Join Date: Nov 2006
Location: boulder
Posts: 5
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Volume Bias

Same problem:

TS 8.6 (Build 2696)
3m
TFU10
TS

What is wrong?
bobpi is offline  
Reply With Quote
Old 09-24-2011, 08:43 PM   #44

Tradewinds's Avatar

Join Date: Nov 2008
Location: Northeast U.S.
Posts: 891
Ignore this user

Thanks: 373
Thanked 231 Times in 164 Posts
Blog Entries: 6

Re: Volume Bias

The ratio of the Volume Bias revolves around the Easy Language reserved Words:
  • Upticks
  • Ticks
  • Upticks - Returns the number of ticks on a bar whose value is higher than the tick immediately preceding it.
  • Ticks - Total number of Upticks and Downticks

As an example, I created a one line indicator: (tradestation)

Plot1(Upticks/Ticks, "Tick Ratio");

That one line of code is all you need to plot a lower study that shows the ratio. Of course, there is all kinds of different formatting that can be done. The main calculation is: "Upticks/Ticks" That's it. If I wanted to see when the ratio goes over 50 percent, I could add a center line at 0.5

Plot1(Upticks/Ticks, "Tick Ratio");
Plot2(0.5, "Center Line");

Now you have two lines of code.

If you want the ratio as text on the chart, this one line of code will do that:

Value1 = Text_New(D, T, H*1.001, NumToStr(Upticks/Ticks,2));

That one line of code puts the ratio over the high of the bar.

If you want it to be in different colors, or only display on the current bar, and not all the bars, or do other formatting, that is more lines of code. But the basics are very simple.
__________________
Precise, "dialed-in", targeted combination setups, like opening a combination lock; is the experience you should be having while trading. Dial left, right, left, . . . click - the lock opens.
Tradewinds is offline  
Reply With Quote
Old 10-02-2011, 05:38 AM   #45

Join Date: Dec 2010
Posts: 103
Ignore this user

Thanks: 3
Thanked 7 Times in 7 Posts

Re: Volume Bias

Are there any upgrades about code?
bomberone1 is offline  
Reply With Quote
Old 10-02-2011, 10:13 AM   #46

Join Date: Dec 2010
Posts: 103
Ignore this user

Thanks: 3
Thanked 7 Times in 7 Posts

Re: Volume Bias

Do you have any improvments?
bomberone1 is offline  
Reply With Quote
Old 10-02-2011, 10:27 AM   #47

zapisy's Avatar

Join Date: Jan 2009
Location: New York
Posts: 81
Ignore this user

Thanks: 6
Thanked 26 Times in 17 Posts

Re: Volume Bias

I do not have,

Linetrol
zapisy is offline  
Reply With Quote
Old 10-02-2011, 12:44 PM   #48

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,477 Times in 912 Posts

Re: Volume Bias

Quote:
Originally Posted by bomberone1 »
Are there any upgrades about code?
what kind of upgrade are you looking for?

I have a few more enhancements and variations to the original code,
but I have not decided on what to do with them yet.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 10-02-2011, 12:46 PM   #49

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,477 Times in 912 Posts

Re: Volume Bias

Quote:
Originally Posted by bomberone1 »
Do you have any improvments?
What kind of improvements do you have in mind?

I welcome all feedbacks and suggestions.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
The Following User Says Thank You to Tams For This Useful Post:
Wallan1 (11-26-2011)

Reply

Tags
bias, volume

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
The Power of Weighted Bias UrmaBlume Technical Analysis 4 06-19-2009 03:42 PM
Retest on Lower Volume with Volume Gradient walterw Technical Analysis 3 04-16-2009 12:10 AM
NYSE Up Volume($UVOL)/Down Volume ($DVOL) Comparison MC Market Internals 23 02-09-2009 09:18 AM

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