| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
Bid-Ask Pressure Indicator for Tradestation Details »» | |||||||||||||||||||||||||||||
| Bid-Ask Pressure Indicator for Tradestation Developer Last Online: Jun 2011
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
Show Your Support
| |||||||||||||||||||||||||||||
| 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 |
| | #2 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 53 Times in 19 Posts
| Re: Bid-Ask Pressure Indicator for Tradestation | ||
| |
|
| The Following User Says Thank You to TinGull For This Useful Post: | ||
RickAce (06-03-2009) | ||
| | #3 | ||
![]() | Re: Bid-Ask Pressure Indicator for Tradestation | ||
| |
|
| | #4 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 53 Times in 19 Posts
| Re: Bid-Ask Pressure Indicator for Tradestation | ||
| |
|
| | #5 | ||
![]() | Re: Bid-Ask Pressure Indicator for Tradestation Thanks | ||
| |
|
| | #6 | ||
![]() | Re: Bid-Ask Pressure Indicator for Tradestation Quote:
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 | ||
| |
|
| The Following User Says Thank You to Blu-Ray For This Useful Post: | ||
sunilrohira (06-17-2009) | ||
| | #7 | ||
![]() | Re: Bid-Ask Pressure Indicator for Tradestation Wow, thanks and so fast! Great customer service! A | ||
| |
|
| | #8 | ||
![]() | Re: Bid-Ask Pressure Indicator for Tradestation 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. | ||
| |
|
![]() |
| Tags |
| bid ask pressure |
| Thread Tools | |
| 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 |