From 4ef0578792d291ea6e4102deb30a9be424eea66d Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Wed, 13 Aug 2014 11:32:27 +1000 Subject: [PATCH] Change minimum and maximum share return percentages to -15% and 25% --- src/globals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/globals.h b/src/globals.h index c442881..e84c5d5 100644 --- a/src/globals.h +++ b/src/globals.h @@ -74,8 +74,8 @@ #define DEC_SHARE_PRICE 0.65 // 65% x 35% chance of decrementing same #define PRICE_CHANGE_RATE 0.25 // Up to 25% of share price is used to incr./decr. #define INITIAL_RETURN 0.05 // Initial return per share: 5% -#define MIN_COMPANY_RETURN -0.10 // Minimum return per share (yes, negative!) -#define MAX_COMPANY_RETURN 0.20 // Maximum return per share +#define MIN_COMPANY_RETURN -0.15 // Minimum return per share (yes, negative!) +#define MAX_COMPANY_RETURN 0.25 // Maximum return per share #define CHANGE_COMPANY_RETURN 0.50 // Chance of randomly changing return #define DEC_COMPANY_RETURN 0.50 // Chance such change will decrease return #define RETURN_MAX_CHANGE 0.03 // Maximum that company return will change