// 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