Prediction of Closing Stock Prices - Computer Action Team

TC = today’s close price YC = yesterday’s close price Volume = today’s volume The following algorithm was used to calculate OBV: If (TC < YC) OBV = OBV – Volume Else If (TC > YC) OBV = OBV + Volume; End if The following algorithm, based on OBV was used to predict an increase or decrease in tomorrows closing stock price OBV: ................
................