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 :

    The best futures trading community on the planet: futures trading, market news, trading charts, trading platforms, trading strategies


    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 burtoninlondon, Today, 12:38 AM
    0 responses
    5 views
    0 likes
    Last Post burtoninlondon  
    Started by AaronKoRn, Yesterday, 09:49 PM
    0 responses
    14 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Yesterday, 08:42 PM
    0 responses
    11 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Yesterday, 07:51 PM
    0 responses
    13 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,982 views
    3 likes
    Last Post jhudas88  
    Working...
    X