fix(basic): Fix default bot.vbs missing parenthesis in code.

This commit is contained in:
Rodrigo Rodriguez 2019-08-30 14:50:57 -03:00
parent 08f56b305b
commit 850100268a

View file

@ -56,9 +56,9 @@ else
' TODO: This must be reviewed in terms of financing logic. ' TODO: This must be reviewed in terms of financing logic.
nInstallments = parseIntinstallments nInstallments = parseInt(installments)
vAmmount = parseFloatammount vAmmount = parseFloat(ammount)
initialPayment = parseFloatvAmmount * 0.3 ' 30% of the value initialPayment = vAmmount * 0.3 ' 30% of the value
tac = 800 tac = 800
adjustment = 1.3 adjustment = 1.3