From 62262756e80e729d5b46d9f526c1aae71160e511 Mon Sep 17 00:00:00 2001 From: Pranav Date: Sat, 3 Apr 2021 16:34:03 +0530 Subject: [PATCH] [Fix] : Alter stock price weight constants --- models/Constants.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/Constants.go b/models/Constants.go index 356d5cb6..8973d5aa 100644 --- a/models/Constants.go +++ b/models/Constants.go @@ -9,8 +9,8 @@ const BUY_FROM_EXCHANGE_LIMIT = 20 const ORDER_PRICE_WINDOW = 20 const MINIMUM_ORDER_PRICE = 10 const ORDER_FEE_PERCENT = 3 -const STOCK_AVERAGE_PERCENT = 1 -const MAX_AVERAGE_STOCK_COUNT = 3 +const STOCK_AVERAGE_PERCENT = 2 +const MAX_AVERAGE_STOCK_COUNT = 20 const STARTING_CASH = 200000