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

Reply
Delta Divergence Details »»
Delta Divergence
Platform: , by Soultrader (Super Moderator) Soultrader is offline
Developer Last Online: Jun 2011 Show Printable Version Email this Page

Platform: Tradestation Rating:
Released: 01-29-2008 Last Update: Never Installs: 14
 
No support by the author.

Credit and thanks goes out to Blu-Ray for developing this indicator. The original post can be located here.

" It's based on the High of Day and Low of Day, I've also coded it with the alerts to fire off when a divergence appears.

Note: when testing it today, Alerts were really annoying within the first 15-30 minutes of the day, as they kept firing off when the market is finding it's range. ( Maybe that was my fault because I was testing it on 5 different symbols )

Also coded it up into a "Show Me", so it will plot a dot with the relevant color when a divergence appears. However, I've coded this one up to fire off as soon as the next bar starts. As what would happen, it would plot a dot when divergence started to appear within a bar, but by the time the bar finished and there was no divergence the dot would still be there.

Note: to anyone unfamilar with this indicator, it will only work on LIVE data ( not historical )"

Screenshot is attached.

Download Now

File Type: eld DELTA_DIVERGENCE.ELD (5.7 KB, 698 views)
File Type: eld DELTA_DIVERGENCE_SM.ELD (5.7 KB, 578 views)

Screenshots

Delta Divergence-delta-divergence.png  

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 9 Users Say Thank You to Soultrader For This Useful Post:
Chouca (01-31-2010), hawk_7_7 (12-04-2008), pchan (03-17-2010), RobotMan (09-04-2009), salopare (01-27-2012), scottzim46 (01-25-2010), Tams (04-20-2009)

Comments
Old 08-05-2008, 10:24 AM   #18

Join Date: Jan 2008
Location: Los Angeles
Posts: 27
Ignore this user

Thanks: 0
Thanked 10 Times in 4 Posts

Re: Delta Divergence

Soul,

well done on this indicator!

Do you know where i can find this for Ninja 6.5? Im not a TS user.

thanks in advance!
Mavrik00 is offline  
Reply With Quote
Old 09-22-2008, 07:14 PM   #19

Join Date: Aug 2008
Posts: 12
Ignore this user

Thanks: 2
Thanked 0 Times in 0 Posts

Re: Delta Divergence

Is this the same indicator sold by TTM known as Delta "D" ?
user237509837 is offline  
Reply With Quote
Old 04-20-2009, 12:37 AM   #20

Join Date: Apr 2009
Location: Terrey Hills
Posts: 2
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Delta Divergence

Hi Blu-Ray,
I see that you developed the Delta Divergence indicator for TS. I use NinjaTrader and was wondering if I could get a textfile of the EL code, so that I can port it to NinjaTrader.
Please feel free to give me a flat "no" if this is an imposition.

Thanks
astrolobe is offline  
Reply With Quote
Old 04-20-2009, 05:49 AM   #21

Blu-Ray's Avatar

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

Thanks: 164
Thanked 292 Times in 105 Posts

Re: Delta Divergence

Quote:
Originally Posted by astrolobe »
Hi Blu-Ray,
I see that you developed the Delta Divergence indicator for TS. I use NinjaTrader and was wondering if I could get a textfile of the EL code, so that I can port it to NinjaTrader.
Please feel free to give me a flat "no" if this is an imposition.

Thanks
NO !! ...................... ...... lol... only joking, here you go :

inputs:
UpColor(Green),
DownColor(Red),
UpDivergence(Blue),
DownDivergence(Magenta);

variables:

MyVol(0), LL(0),HH(0),
Color(yellow),
intrabarpersist MyCurrentBar(0),
intrabarpersist VolumeAtBid(0),
intrabarpersist VolumeAtAsk(0),
intrabarpersist BAVolDiff(0),
intrabarpersist VolTmp(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 LastBarOnChart then begin
MyVol = Iff(BarType < 2, Ticks, Volume);
if CurrentBar > MyCurrentBar then begin
VolumeAtBid = 0;
VolumeAtAsk = 0;
BAVolDiff= 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 BAVolDiff= VolumeAtAsk-VolumeAtBid ;
VolTmp = MyVol ;
end ;
if BAVolDiff<= 0 then color = DownColor else color = UpColor;

plot1(BAVolDiff, "BAVolDiff", color);
Plot2( 0, "ZeroLine" ) ;

if low = LL and BAVolDiff> 0 then begin
setplotcolor(1,UpDivergen ce);
Alert( "New Low_Bid/Ask_Divergence");
end;

if high = HH and BAVolDiff< 0 then begin
setplotcolor(1,DownDiverg ence);
Alert ("New High_Bid/Ask_Divergence");
end;



Hope this helps

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:
Chouca (01-31-2010)
Old 04-20-2009, 06:22 AM   #22

BlowFish's Avatar

Join Date: Mar 2007
Location: In Da House
Posts: 3,292
Ignore this user

Thanks: 129
Thanked 1,054 Times in 702 Posts

Re: Delta Divergence

Astro there are a whole bunch of Ninja 'delta' type indicators (as there are TS ones ). I don't recall there being any that do divergence but it would probably be easier to use one of those as a starting point. I believe they are filed under 'buy sell' in the Ninja indicator section of the forum.
BlowFish is offline  
Reply With Quote
Old 04-20-2009, 07:19 AM   #23

Join Date: Apr 2009
Location: Terrey Hills
Posts: 2
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Delta Divergence

Thanks Blu-Ray, I really appreciate it!
astrolobe is offline  
Reply With Quote
Old 01-27-2010, 07:47 PM   #24

Join Date: May 2009
Location: chitown
Posts: 9
Ignore this user

Thanks: 5
Thanked 0 Times in 0 Posts

Re: Delta Divergence

Thanks you Bluray for developing this indicator. I have been using it so far on 20 min currency futures charts and like what I see.

I wanted to change the color of the blue show me dot to a color that I can see better on my chart. I have tried changing the color on both the Input tab, and under the color tab and I have not had any luck. Should Updivergence and Down divergence both be the same color under both tabs? I have tried this and havent had any luck. Any insight into this would be appreciated very much.

Bluray thaks again to the contributions you have made to this site.

Scott
scottzim46 is offline  
Reply With Quote

Reply

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Volume Delta Oscillator Soultrader Trading Indicators 18 08-16-2008 07:42 PM
Trading the Twiggs Divergence walterw Technical Analysis 8 07-27-2007 08:41 PM
Market Delta Footprint ant Technical Analysis 2 11-09-2006 12:35 PM
[Daily Video - Price & TICK Divergence] 8/17/06 by The Lab Soultrader Trading Videos 0 08-17-2006 01:57 PM
[Price and TICK Divergence] by The Lab Soultrader Trading Videos 0 08-07-2006 11:58 PM

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