Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Delta Divergence

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Delta Divergence

    Does anyone know of a Delta Divergence indicator for NT7? I appreciate it. Thanks

    #2
    Yes, take a look on the Gom family indicators.

    You can easily create the Delta Divergence indicator based on the Gom indicators.

    I've written a code and it works perfectly (at least for me):

    // Condition set 1: Delta Divergence Down
    if (Close[0] < Open[0]
    && GomDeltaVol_UpDown().UpVolume[0] > 0)
    {
    DrawTriangleDown("My triangle down" + CurrentBar, true, 0, High[0] + 2 * TickSize, Color.Black);
    }

    // Condition set 2: Delta Divergence Up
    if (Close[0] > Open[0]
    && GomDeltaVol_UpDown().DownVolume[0] > 0)
    {
    DrawTriangleUp("My triangle up" + CurrentBar, true, 0, Low[0] + -2 * TickSize, Color.Gold);
    }

    Comment


      #3
      delta divergence indicator

      Hi,
      I don't have any program skills to do the indicator.
      Can you please post a zip file when you make it?
      Thanks in advance

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      82 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      43 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      64 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      68 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      56 views
      0 likes
      Last Post CarlTrading  
      Working...
      X