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 kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    24 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    14 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    135 views
    0 likes
    Last Post SalmaTrader  
    Working...
    X