Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 cre8able, Today, 03:20 PM
      1 response
      9 views
      0 likes
      Last Post cre8able  
      Started by fiddich, Today, 05:25 PM
      0 responses
      3 views
      0 likes
      Last Post fiddich
      by fiddich
       
      Started by gemify, 11-11-2022, 11:52 AM
      6 responses
      804 views
      2 likes
      Last Post ultls
      by ultls
       
      Started by ScottWalsh, Today, 04:52 PM
      0 responses
      4 views
      0 likes
      Last Post ScottWalsh  
      Started by ScottWalsh, Today, 04:29 PM
      0 responses
      9 views
      0 likes
      Last Post ScottWalsh  
      Working...
      X