| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
Delta Divergence Details »» | |||||||||||||||||||||||||||||
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
Screenshots Show Your Support
| |||||||||||||||||||||||||||||
| Comments |
| | #18 | ||
![]() | Re: Delta Divergence 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! | ||
| |
|
| | #19 | ||
![]() | Re: Delta Divergence | ||
| |
|
| | #20 | ||
![]() | Re: Delta Divergence 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 | ||
| |
|
| | #21 | ||
![]() | Re: Delta Divergence Quote:
...... 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 | ||
| |
|
| The Following User Says Thank You to Blu-Ray For This Useful Post: | ||
Chouca (01-31-2010) | ||
| | #22 | ||
![]() | Re: Delta Divergence ). 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. | ||
| |
|
| | #23 | ||
![]() | Re: Delta Divergence | ||
| |
|
| | #24 | ||
![]() | Re: Delta Divergence 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 | ||
| |
|
![]() |
| Thread Tools | |
| 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 |