Announcement

Collapse
No announcement yet.

Tick count study

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

  • Tick count study

    I'd appreciate any help on this.
    I am utilizing desktop API to retrieve data...but running into problems.

    ¡Current method
    SetApplication([application name])
    lHandle = RequestHistory([symbol], "D", dtBARS, 20, -1, -1)
    barItem = GetBar(lHandle, 0)

    ¡Problem - cannot get Tick count

    barItem indicates:

    dtTime <> null
    dOpen <> 0
    dHigh <> 0
    dLow <> 0
    dClose <> 0
    dVolume <> 0
    dOI = 0
    bfFlags = 0
    dTickBid = 0
    dTickAsk = 0
    dTickTrade = 0

    How can I get the tick counts?
    yumi nambu

  • #2
    You will need to request tick data (looks like you are requesting Daily bars here), and use a counter to keep track of the ticks.

    Comment

    Working...
    X