Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Gom_delta for Nt8

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

    Gom_delta for Nt8

    hi, there is someone who uses GomDelta for nt8?

    link for download :



    I ask you how can i use it in my indicator? How i recovery it value ?

    thanks..

    if i write

    Code:
      
     protected override void OnBarUpdate()
    
     Print(BarDelta()[1));
    i see print in a screen all Zero number...(i've enable Tick Replay in data series)
    Last edited by turbofib; 02-06-2016, 10:16 PM.

    #2
    In the code you will see they do not use Plot, but create rectangles & lines for what is each bar. I think you would need to capture the values from the code below. I would think you want to capture the values yOpen, yClose, yHi and yLo

    SharpDX.RectangleF rect = new SharpDX.RectangleF(xPosition, top, width, height);

    if(yClose<yOpen) { RenderTarget.FillRectangle(rect, brushUp); }
    else if(yClose>yOpen) { RenderTarget.FillRectangle(rect, brushDn);}
    else { RenderTarget.FillRectangle(rect, brushOL);}

    RenderTarget.DrawRectangle(rect, brushOL);
    RenderTarget.DrawLine(new SharpDX.Vector2(xCenter,yHi), new SharpDX.Vector2(xCenter, top ), brushOL, 1f);
    RenderTarget.DrawLine(new SharpDX.Vector2(xCenter,yLo), new SharpDX.Vector2(xCenter, bottom), brushOL, 1f);


    John

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    657 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    373 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    109 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    574 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    579 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X