thohoh
11/8/2018 - 9:45 PM

Algo trading

// VWAP Volume weightened average price
// NOTE: You can take step further and take top 5-10 orders from each side of the book
( (bidPrice * bidVolume) + (askPrice * askVolume) ) / (bidVolume + askVolume) = VWMAP


Global Average symmetric price