Better Volume Indicator
Forgotten Your Password?
Connect with Facebook
Frequent Questions

Coding Forum Collaborate, receive help, or discuss coding related issues.

Coding Forum Thread, Better Volume Indicator in Trading Resources; Can one of you coders create an ELD. Special thanks to Barry taylor for providing this. Better Volume Indicator Inputs: ...
Reply
3 3 Attachment(s)
 
LinkBack Thread Tools Display Modes

Better Volume Indicator  

  #1  
Old 08-27-2008, 08:51 AM
user237509837
 
Join Date: Aug 2008
Posts: 12
Thanks: 2
Thanked 0 Times in 0 Posts
Can one of you coders create an ELD. Special thanks to Barry taylor for providing this.

Better Volume Indicator

Inputs: LowVol(True), ClimaxUp(True), ClimaxDown(True), Churn(True), ClimaxChurn(True), Color(Cyan), LowVolColor(Yellow), ClimaxUpColor(Red), ClimaxDownColor(White), ChurnColor(Green), ClimaxChurnColor(Magenta) , AvgColor(Red);
Variables: BarColor(Cyan), Lookback(20);

BarColor = Color;

If BarType > 1 then begin
Value1 = V;
Value2 = V*Range;
If Range <> 0 then Value3 = V/Range;
Condition1 = Value1 = Lowest(Value1,Lookback);
Condition2 = Value2 = Highest(Value2,Lookback);
Condition3 = Value3 = Lowest(Value3,Lookback);
Condition4 = Value3 = Highest(Value3,Lookback);
If LowVol and Condition1 then BarColor = LowVolColor;
If ClimaxUp and Condition2 and C > O then BarColor = ClimaxUpColor;
If ClimaxDown and (Condition2 or Condition3) and C < O then BarColor = ClimaxDownColor;
If Churn and Condition4 then BarColor = ChurnColor;
If ClimaxChurn and Condition4 and ((Condition2 and C > O) or ((Condition2 or Condition3) and C < O)) then BarColor = ClimaxChurnColor;
End;

If BarType <= 1 then begin
Value1 = UpTicks+DownTicks;
Value2 = UpTicks*Range;
Value3 = (UpTicks-DownTicks)*Range;
Value4 = DownTicks*Range;
Value5 = (DownTicks-UpTicks)*Range;
If Range <> 0 then begin
Value6 = UpTicks/Range;
Value7 = (UpTicks-DownTicks)/Range;
Value8 = DownTicks/Range;
Value9 = (DownTicks-UpTicks)/Range;
Value10 = (UpTicks+DownTicks)/Range;
End;
Condition1 = Value1 = Lowest(Value1,Lookback);
Condition2 = Value2 = Highest(Value2,Lookback);
Condition3 = Value3 = Highest(Value3,Lookback);
Condition4 = Value4 = Highest(Value4,Lookback);
Condition5 = Value5 = Highest(Value5,Lookback);
Condition6 = Value6 = Lowest(Value6,Lookback);
Condition7 = Value7 = Lowest(Value7,Lookback);
Condition8 = Value8 = Lowest(Value8,Lookback);
Condition9 = Value9 = Lowest(Value9,Lookback);
Condition10 = Value10 = Highest(Value10,Lookback) ;
If LowVol and Condition1 then BarColor = LowVolColor;
If ClimaxUp and (Condition2 or Condition3 or Condition8 or Condition9) and C > O then BarColor = ClimaxUpColor;
If ClimaxDown and (Condition4 or Condition5 or Condition6 or Condition7) and C < O then BarColor = ClimaxDownColor;
If Churn and Condition10 then BarColor = ChurnColor;
If ClimaxChurn and Condition10 and (((Condition2 or Condition3 or Condition8 or Condition9) and C > O) or ((Condition4 or Condition5 or Condition6 or Condition7) and C < O)) then BarColor = ClimaxChurnColor;
End;

Plot1(Value1,"Volume",Bar Color);
Plot2(Average(Value1,100) ,"Avg",AvgColor);


{************************ ** Change Log: ************************* *}
{23 November 2007 - Added LowChurn colored volume bars }
{19 April 2008 - Got rid of LowChurn and replaced with ClimaxDown }
{19 April 2008 - Added open & close conditions with ClimaxUp and ClimaxDown }
{19 April 2008 - Added different calculations for tick/intra-day charts }


Better Volume PaintBar

Inputs: LowVol(True), ClimaxUp(True), ClimaxDown(True), Churn(True), ClimaxChurn(True), LowVolColor(Yellow), ClimaxUpColor(Red), ClimaxDownColor(White), ChurnColor(Blue), ClimaxChurnColor(Magenta) , Lookback(20);
Variables: BarColor(Green);

BarColor = Green;

If BarType > 1 then begin
Value1 = V;
Value2 = V*Range;
If Range <> 0 then Value3 = V/Range;
Condition1 = Value1 = Lowest(Value1,Lookback);
Condition2 = Value2 = Highest(Value2,Lookback);
Condition3 = Value3 = Lowest(Value3,Lookback);
Condition4 = Value3 = Highest(Value3,Lookback);
If LowVol and Condition1 then BarColor = LowVolColor;
If ClimaxUp and Condition2 and C > O then BarColor = ClimaxUpColor;
If ClimaxDown and (Condition2 or Condition3) and C < O then BarColor = ClimaxDownColor;
If Churn and Condition4 then BarColor = ChurnColor;
If ClimaxChurn and Condition4 and ((Condition2 and C > O) or ((Condition2 or Condition3) and C < O)) then BarColor = ClimaxChurnColor;
End;

If BarType <= 1 then begin
Value1 = UpTicks+DownTicks;
Value2 = UpTicks*Range;
Value3 = (UpTicks-DownTicks)*Range;
Value4 = DownTicks*Range;
Value5 = (DownTicks-UpTicks)*Range;
If Range <> 0 then begin
Value6 = UpTicks/Range;
Value7 = (UpTicks-DownTicks)/Range;
Value8 = DownTicks/Range;
Value9 = (DownTicks-UpTicks)/Range;
Value10 = (UpTicks+DownTicks)/Range;
End;
Condition1 = Value1 = Lowest(Value1,Lookback);
Condition2 = Value2 = Highest(Value2,Lookback);
Condition3 = Value3 = Highest(Value3,Lookback);
Condition4 = Value4 = Highest(Value4,Lookback);
Condition5 = Value5 = Highest(Value5,Lookback);
Condition6 = Value6 = Lowest(Value6,Lookback);
Condition7 = Value7 = Lowest(Value7,Lookback);
Condition8 = Value8 = Lowest(Value8,Lookback);
Condition9 = Value9 = Lowest(Value9,Lookback);
Condition10 = Value10 = Highest(Value10,Lookback) ;
If LowVol and Condition1 then BarColor = LowVolColor;
If ClimaxUp and (Condition2 or Condition3 or Condition8 or Condition9) and C > O then BarColor = ClimaxUpColor;
If ClimaxDown and (Condition4 or Condition5 or Condition6 or Condition7) and C < O then BarColor = ClimaxDownColor;
If Churn and Condition10 then BarColor = ChurnColor;
If ClimaxChurn and Condition10 and (((Condition2 or Condition3 or Condition8 or Condition9) and C > O) or ((Condition4 or Condition5 or Condition6 or Condition7) and C < O)) then BarColor = ClimaxChurnColor;
End;

If BarColor <> Green then PlotPaintBar(H,L,O,C,"Bet terVol",BarColor);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #2  
Old 08-27-2008, 10:19 AM
forsearch
Banned
 
Join Date: Mar 2007
Location: Unknown
Posts: 498
Thanks: 180
Thanked 102 Times in 69 Posts
Not certain about what the difficulty here is....

If you have TS or MC, why not verify and save the text as an .eld on that platform?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #3  
Old 08-27-2008, 01:48 PM
dandxg
 
Join Date: Sep 2007
Location: Denver
Posts: 161
Thanks: 112
Thanked 41 Times in 32 Posts
Isn't the code already written, freely, on his website?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #4  
Old 08-27-2008, 06:05 PM
user237509837
 
Join Date: Aug 2008
Posts: 12
Thanks: 2
Thanked 0 Times in 0 Posts
Originally Posted by dandxg View Post
Isn't the code already written, freely, on his website?
It's not the same as written by the orignal author.

In addition, I am a new TS user and totally illiterate when it comes to anything beyond point-n-click; hence my request for the ELD from you of you kind souls who knows what they're doing.

Last edited by user237509837; 08-27-2008 at 06:14 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #5  
Old 08-27-2008, 06:16 PM
sevensa
 
Join Date: Nov 2006
Location: N/A
Posts: 607
Thanks: 62
Thanked 271 Times in 168 Posts
But you already have the code. You copied and pasted it above. If you can copy and paste it here, surely you can copy and paste it into the editor of TS, or MC?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #6  
Old 08-27-2008, 06:41 PM
thrunner
 
Join Date: Feb 2007
Location: US
Posts: 314
Thanks: 86
Thanked 191 Times in 87 Posts
Originally Posted by user237509837 View Post
It's not the same as written by the orignal author.
It is the same as that downloadable from his site, except for the copyright notice that you left out
You should just download the eld from that site if you are unable to verify the source.
Code:
{***** Copyright www.Emini-Watch.com  All rights reserved *****}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to thrunner For This Useful Post:
forsearch (08-27-2008)

Re: Better Volume Indicator  

  #7  
Old 08-27-2008, 08:59 PM
user237509837
 
Join Date: Aug 2008
Posts: 12
Thanks: 2
Thanked 0 Times in 0 Posts
Originally Posted by thrunner View Post
It is the same as that downloadable from his site, except for the copyright notice that you left out
You should just download the eld from that site if you are unable to verify the source.
Code:
{***** Copyright www.Emini-Watch.com  All rights reserved *****}
Please post the link from the site with the ELD.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #8  
Old 08-27-2008, 09:40 PM
thrunner
 
Join Date: Feb 2007
Location: US
Posts: 314
Thanks: 86
Thanked 191 Times in 87 Posts
Originally Posted by user237509837 View Post
Please post the link from the site with the ELD.
http://www.google.com/search?hl=en&c...ch&btnG=Search
The first search result from the above google search should be it. There is a big button that says 'Free Code' on that page.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #9  
Old 08-27-2008, 10:35 PM
forsearch
Banned
 
Join Date: Mar 2007
Location: Unknown
Posts: 498
Thanks: 180
Thanked 102 Times in 69 Posts
Please don't feed the trolls...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: Better Volume Indicator  

  #10  
Old 08-28-2008, 09:53 PM
user237509837
 
Join Date: Aug 2008
Posts: 12
Thanks: 2
Thanked 0 Times in 0 Posts
Originally Posted by thrunner View Post
http://www.google.com/search?hl=en&c...ch&btnG=Search
The first search result from the above google search should be it. There is a big button that says 'Free Code' on that page.
There is no ELD there, only the code that I posted here (which I got from that link).

Again, I'd be much obliged if someone who has experience with TS create the ELD and share it with the community. Thanks in advance.

Last edited by user237509837; 08-28-2008 at 10:04 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cumulative Volume(Delta Buy/Sell) Indicator mdtmn Market Profile 5 07-27-2010 05:32 AM
Volume + Price Action Momentum Indicator Tresor Coding Forum 4 03-04-2010 02:14 PM
Volume Delta Indicator Soultrader Trading Indicators 29 05-22-2009 01:08 AM
Volume Gradient + Heikin Ashii Trend Indicator GCB Trading Indicators 27 04-07-2007 08:29 AM
Up/Down Volume Indicator Blu-Ray Trading Indicators 5 02-04-2007 05:59 PM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread 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

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

» »

» Invite Friends