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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      571 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      331 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      549 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      549 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X