|
|||||||
| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() |
|
|
LinkBack (2) | Release Tools |
|
|
|||||
|
|||||
|
Here's an indicator I requested and was created by Insideday. Its a simple indicator that calculates the number of contracts at the Ask minus Bid off the tape. Basically, I'm interested in seeing if there are more lots at the ask vs the bid at key price levels such as pivots. Im also interested in seeing the difference during a tight range in anticipation of a breakout.
I personally plot this...
__________________
James Lee TradersLaboratory.com ----------------------------- Empowering traders with knowledge. Please support TL by visiting our sponsors. Thanks! |
|
By
whisper01Barry
on
01-28-2008, 07:23 PM
|
|
Re: Bid-Ask Tape Indicator
You guy's are great!!!
Do any of you have Ichimoku indicator??Thanks Again Barry |
|
By
Ancharka
on
01-28-2008, 07:59 PM
|
|
Re: Bid-Ask Tape Indicator
Hi Blue Ray,
You have done a great job coding Hubert's "secret" Divergence indicator. I was trying to create an exit for one of my strategies based on that indicator. But no success. What I want to do is very simple: If I am Long and 2 consecutive Red histogramm bars are in place I want to exit. And opposite for Short trades. What I wrote is this: If MP = 1 and BAVolDiff[1] <= 0 and BAVolDiff <= 0 then begin Sell ("SX1") from entry (LEdelta") next bar market; end; Something is not working correctly with this line, I am not getting exits at right place Would you be so kind and may be help me with it. I am not a very good programmer but very good with pattern recognition. Best Regards, Ancharka |
|
By
marketguy
on
01-28-2008, 10:05 PM
|
|
Re: Bid-Ask Tape Indicator
Blu,
Thanks so much. I have been waiting for this alarmed Delta Diver for a long time now. You are the greatest. Questions: 1. Do we have to set our own alert or does it happen automatically per the code? 2. If we want the Show Me and the alert do we have to add both ELD's to a chart? Again, much thanks. Bryan |
|
By
Blu-Ray
on
01-29-2008, 03:50 AM
|
|
Re: Bid-Ask Tape Indicator
It looks okay to me, what I would do is remove the = and also check that intrabar order generation is not enabled. Apart from that, I'm unsure. Cheers Blu-Ray Edit: This shouldn't make any difference, but give it a try as sometimes TS is a bit funny with exits: If MP = 1 and BAVolDiff[2] > 0 and BAVolDiff[1] < 0 and BAVolDiff < 0 then begin Sell ("SX1") from entry (LEdelta") next bar market; end; |
|
Last edited by Blu-Ray; 01-29-2008 at 04:06 AM.
Reason: Added some coding
|
|
By
Blu-Ray
on
01-29-2008, 03:54 AM
|
|
Re: Bid-Ask Tape Indicator
1. Just format the indicator and click on " enable alerts". 2. No, I coded alerts into the "Show Me" as well, so you would just need to add that ELD to your chart, just remember that the alert will fire off after the bar has finished. Cheers Blu-Ray |
|
Last edited by Blu-Ray; 01-29-2008 at 05:44 AM.
Reason: Spelling
|
|
By
Blu-Ray
on
01-29-2008, 03:59 AM
|
|||||||||||||||
|
Re: Bid-Ask Tape Indicator
Yes sorry, I realised this later on, here you go: inputs: UpColor(green), DnColor(red), UpDivergence(Blue), DnDivergence(Magenta); vars: LL(0),HH(0); if date <> date[1] then begin LL = low; HH = High; end; if Low < LL then LL = Low; if High > HH then HH = high; if upticks > downticks then value1 = (upticks-downticks) else value1 = -(downticks-upticks); plot1(value1,"ticks"); if plot1 > 0 then setplotcolor(1,upcolor) else setplotcolor(1,dncolor); if low = LL and value1> 0 then begin setplotcolor(1,UpDivergen ce); Alert( "New Low_Divergence"); end; if high = HH and value1< 0 then begin setplotcolor(1,DnDivergen ce); Alert ("New High_Divergence"); end; Cheers Blu-Ray |
|||||||||||||||
|
By
Ancharka
on
01-29-2008, 09:22 AM
|
|
Re: Bid-Ask Tape Indicator
Good Morning, Blu-Ray Thank you very much for your input. I am going to try it today and see if it will work. I will let you know. Best Regards, Ancharka |
|
By
dovetree
on
01-29-2008, 06:44 PM
|
|
Re: Bid-Ask Tape Indicator
HI Blueray,
The only problem with the code I see so far for 2000i is upcolor and down colour etc. These words again are not recognised. Will have to add some type of line like If value > than 0 colour green, or value <0 color red etc. Thanks |
![]() |
LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f46/bid-ask-tape-indicator-1131.html
|
||||
| Posted By | For | Type | Date | |
| Bid-Ask Tape Indicator - Page 4 - Traders Laboratory | This thread | Refback | 01-25-2008 04:01 AM | |
| Traders Laboratory - forumdisplay | This thread | Refback | 08-16-2007 04:29 AM | |
| Currently Active Users Viewing This Release: 1 (0 members and 1 guests) | |
| Release Tools | |
|
|
Similar Threads
|
||||
| Release | Release Starter | Category | Comments | Last Post |
| Bid-Ask Pressure Indicator for Tradestation | Soultrader | Trading Indicators | 23 | 07-28-2008 12:04 PM |
| Tape Reading: How I Started Learning Tape | Soultrader | Technical Analysis | 2 | 01-28-2007 05:33 PM |
| Tape - Bid Ticker | JayRemy | Beginners Forum | 17 | 11-06-2006 04:24 AM |
|
|
|