presence of volume has no impact on price change

This commit is contained in:
Trowbridge 2019-03-20 13:03:58 -04:00
parent ae5515a83e
commit 7d2e018388

View File

@ -388,14 +388,10 @@ Sub month_tosheet(ByRef pkg() As Variant, ByRef basket() As Variant)
End If End If
'--adjust-- '--adjust--
If co_num(pkg(i, 3), 0) = 0 Then If (pkg(i, 3) + pkg(i, 2)) = 0 Then
sh.Cells(i + 1, 8) = 0 sh.Cells(i + 1, 8) = 0
Else Else
If (pkg(i, 3) + pkg(i, 2)) = 0 Then sh.Cells(i + 1, 8) = (pkg(i, 7) + pkg(i, 6)) / (pkg(i, 3) + pkg(i, 2)) - (pkg(i, 6) / pkg(i, 2))
sh.Cells(i + 1, 8) = 0
Else
sh.Cells(i + 1, 8) = (pkg(i, 7) + pkg(i, 6)) / (pkg(i, 3) + pkg(i, 2)) - (pkg(i, 6) / pkg(i, 2))
End If
End If End If
'--current adjust-- '--current adjust--