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

Reply
Bid-Ask Pressure Indicator for Tradestation Details »»
Bid-Ask Pressure Indicator for Tradestation
Platform: , by Soultrader (Super Moderator) Soultrader is offline
Developer Last Online: Jun 2011 Show Printable Version Email this Page

Platform: Unknown Rating:
Released: 11-17-2006 Last Update: Never Installs: 0
 
No support by the author.

This is a bid-ask pressure indicator for tradestation trading platform. All credits go out to the author of this indicator from the tradestation forum alias lleibfarth.

Here is a description from his post:

Description: This indicator is a smoothed version of the TS indicator Bid & Ask Vol Ratio and works with real-time, intraday charts. The intent is to provide more usable information about the current ratio of bid/ask volume. This indicator will not work on historical data (it must be used during a live intraday market) and is relative to the chart interval on which it is used. I have found this indicator to be most useful in shorter charting intervals.

How it works: The data is smoothed using a double-smoothed exponential average that heavily weighs the most recent ratios. This provides a relatively predictable curve (or histogram) that tracks changes very quickly. In addition, a logarithmic ratio is used to provide a zero-line reference (and color change). "

Screenshot:

Download Now

File Type: eld 20060726114402BA PRESSURE.ELD (5.3 KB, 1570 views)

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 22 Users Say Thank You to Soultrader For This Useful Post:
allforex1 (12-08-2008), berrob (10-24-2011), Chouca (12-17-2009), Felis (03-18-2010), hawk_7_7 (12-04-2008), javi (05-28-2010), laurus12 (12-08-2010), mklevas (06-25-2009), rako (04-19-2009), RomanFx (07-28-2009), shrike (06-13-2009), ss2497 (09-23-2009), sunilrohira (06-10-2009), swansjr (04-29-2009), tagher (11-14-2008), Tams (02-25-2009), TIKITRADER (08-06-2009), waverunner (08-04-2009), webercom (07-17-2009)

Comments
Old 11-17-2006, 01:41 PM   #2

TinGull's Avatar

Join Date: Oct 2006
Location: Stockton Springs, Maine
Posts: 1,440
Ignore this user

Thanks: 0
Thanked 53 Times in 19 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Glad you found it useful!
TinGull is offline  
Reply With Quote
The Following User Says Thank You to TinGull For This Useful Post:
RickAce (06-03-2009)
Old 11-18-2006, 09:26 AM   #3

Join Date: Sep 2006
Location: eden prairie
Posts: 110
Ignore this user

Thanks: 278
Thanked 63 Times in 7 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Thanks so much Tingull
namstrader is offline  
Reply With Quote
Old 11-18-2006, 11:19 AM   #4

TinGull's Avatar

Join Date: Oct 2006
Location: Stockton Springs, Maine
Posts: 1,440
Ignore this user

Thanks: 0
Thanked 53 Times in 19 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Anytime
TinGull is offline  
Reply With Quote
Old 11-01-2007, 04:29 AM   #5

Join Date: Oct 2006
Location: New York
Posts: 15
Ignore this user

Thanks: 1
Thanked 0 Times in 0 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Is there anyway that this can be converted to ELS (2000i) version? Or I can get the code so that I can do it myself?

Thanks
Agora is offline  
Reply With Quote
Old 11-01-2007, 05:45 AM   #6

Blu-Ray's Avatar

Join Date: Nov 2006
Location: England
Posts: 508
Ignore this user

Thanks: 164
Thanked 292 Times in 105 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Quote:
Originally Posted by Agora »
Is there anyway that this can be converted to ELS (2000i) version? Or I can get the code so that I can do it myself?

Thanks
Here you go ...........



inputs:
Period(20),
UpColor(green),
DownColor(red);

variables:
MyVol(0),
Color(yellow),
SmoothedBA(0),
Length(squareroot(Period) ),
intrabarpersist MyCurrentBar(0),
intrabarpersist VolumeAtBid(0),
intrabarpersist VolumeAtAsk(0),
intrabarpersist BAVolRatio(0),
intrabarpersist VolTmp(0);

if LastBarOnChart and BarStatus(1) <> 2 then begin
MyVol = Iff(BarType < 2, Ticks, Volume);
if CurrentBar > MyCurrentBar then begin
VolumeAtBid = 0;
VolumeAtAsk = 0;
BAVolRatio = 0;
VolTmp = 0;
MyCurrentBar = CurrentBar;
end;
if InsideBid < InsideAsk then begin
if Close <= InsideBid then
VolumeAtBid = VolumeAtBid + MyVol - VolTmp
else if Close >= InsideAsk then
VolumeAtAsk = VolumeAtAsk + MyVol - VolTmp ;
end;
if VolumeAtBid > 0 and VolumeAtAsk > 0 then BAVolRatio = Log( VolumeAtAsk / VolumeAtBid );
VolTmp = MyVol ;
end ;
SmoothedBA = xaverage(xaverage(BAvolra tio, Length), Length);
if SmoothedBA <= 0 then color = DownColor else color = UpColor;

plot1(SmoothedBA, "Pressure", color);
Plot2( 0, "ZeroLine" ) ;


Cheers

Blu-Ray
__________________

“ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google
Blu-Ray is offline  
Reply With Quote
The Following User Says Thank You to Blu-Ray For This Useful Post:
sunilrohira (06-17-2009)
Old 11-01-2007, 07:49 AM   #7

Join Date: Oct 2006
Location: New York
Posts: 15
Ignore this user

Thanks: 1
Thanked 0 Times in 0 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

Blu-ray,

Wow, thanks and so fast! Great customer service!

A
Agora is offline  
Reply With Quote
Old 01-06-2008, 11:21 PM   #8

Join Date: Feb 2007
Location: zephyr
Posts: 97
Ignore this user

Thanks: 2
Thanked 3 Times in 3 Posts

Re: Bid-Ask Pressure Indicator for Tradestation

has anyone succeeded in plotting this indicator w/ ts2000i?
it appears it's way beyond my level..
oh, and the same w/ the bid/ask tape indicator. i'll keep trying.
is it missing a function perhaps, that's in the later versions of TS?
2000i doesn't recognize 'insideBid' or 'insideAsk', so i've been trying to replace them. also the 'intrabarpersist' is not known in 2000i..

:edit: could be it's just not doable in 2000i

Last edited by bubba; 01-06-2008 at 11:27 PM.
bubba is offline  
Reply With Quote

Reply

Tags
bid ask pressure

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
BB Squeeze Replica For Tradestation Soultrader Trading Indicators 56 07-08-2009 04:39 PM
"Force Index Indicator" for Tradestation Soultrader Trading Indicators 11 06-01-2008 09:22 PM
Tape - Bid Ticker JayRemy Beginners Forum 17 11-06-2006 04:24 AM

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