Background: I have writing a crypto trading bot for fun and profit. So far, it connects to an exchange and gets streaming price data. I am using this price to create a technical indicator (MACD). Generally for MACD, it is recommended to use closing prices for 26, 12 and 9 days. However, for my trading strategy, I plan to use data for 26, 12 and 9 minutes.
Question: I am getting multiple (say 10) price ticks in a minute. Do I simply average them and round the time to the next minute (so they all fall in the same minute bucket)? Or is there is better way to handle this.
Many Thanks!
As far as I know, most or all technical indicator formulas rely on same-sized bars to produce accurate and meaningful results. You'll have to do some data transformation. Here's an example of an aggregation technique that uses quantization to get all your bars into uniform sizes. It will convert small bar sizes to larger bar sizes; e.g. second to minute bars.
See Stock.Indicators for .NET for indicators and related tools.