• TIME TO 2024 UK RANKINGS

  • C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

What is the most effective way of determining & measuring the level of HFT activity in a stock

Joined
2/25/11
Messages
2
Points
11
On a security by security basis, I want to be able to quantify the level of HFT activity (and later institutional & retail activity). Is it higher than it normally is? How much so?
What would you say is the best way to measure? Number of quotes? # of quotes relative to volume? Relative to # of trades? Spread volatility? Reversals after block prints?
 
Let me ask you an almost equivalent question: what do you consider high frequency trading?
 
At a minimum, I'd call it anyone who isn't looking to hold an overnight position - any holding time less than one day. Certainly, there is a lot of 'ultra-high frequency' trading where the average holding time is seconds and that probably makes up the lions share of the volume, but for ease of definition I'd go with trading with a holding period of less than one day.
 
Tom, the first step to assess the level of high frequency trading on a future (for example) is to find a reliable high quality datafeed that provides you the best unfiltered tick data. Then, you must build a piece of program in order to process your data and obtain information. HFT can be a lot of things. Try to start thinking it as a big number of small orders in less than a second!
 
Back
Top