Advertisement
luckytyphlosion

Goldenrod Stocks

Aug 1st, 2015
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. Goldenrod Stocks
  2. ================
  3.  
  4. Initial Stock Price:
  5. - ln(x) * 10
  6. - x =
  7. - Handout: pointsEarnedFromHandout
  8. - Coin: pointProfitFromCoin
  9. - Yolocoin: pointProfitFromYolocoin
  10. - Goldenslots: pointsWonFromSlots
  11.  
  12. commandMultiplier = (1 + (ln(x) / 100))
  13. Handout Rate of increase:
  14. - (avgHandout / 6.036328125) * commandMultiplier(avgNumHandoutsPer24Hours)
  15.  
  16. Coin Rate of increase:
  17. - (numPointsWon / numHeads * numPointsLost / numTails) (*/) commandMultiplier(avgNumCoinsPer24Hours)
  18. - (*/) is * if part of equation before (*/) is greater than 1, else (*/) is /.
  19.  
  20. Yolocoin Rate of increase:
  21. - same as coin rate of increase lol.
  22.  
  23. Goldenslots rate of increase:
  24. - (totalPointsWonFromSlots / (8273720 * totalNumSlotsAttempts / 918016)) * commandMultiplier(avgNumGoldenSlotsPer24Hours)
  25. - divisor of totalPointsWonFromSlots can be rewritten as:
  26. - totalNumSlotsAttempts / (5832 / 163) * 182 / 163 * (100 + 5 * 5832 / 163)
  27.  
  28. User Stocks rate of increase:
  29. - totalPointsAfterEachDay / (totalPointsAtStartOfDay + numHandoutsForDay * 6.036328125 + (182(sumOfAllSlotsJackpotsAtTheTimeOfEachGoldenslotsAttempt) + 5669(-5 * numSlotsAttemptsForDay)) / 5832 + numPointsWonFromContests) * commandMultiplier(numNonInfoCommandsExecutedForDay)) * commandMultiplier(numCommandsExecutedPerDay)
  30.  
  31. - Can short/long stocks
  32. - long = earn money when stock price goes up
  33. - short = earn money when stock price goes down
  34.  
  35. - Multiply each formula by the current stock price to get the new stock price
  36. - Stock prices are updated every day.
  37. - Todo: figure out if stock market is "frozen" if no stream is online with goldenrod.
  38. - Can invest yourself as a stock (must have at least 100 points), price for investing is TBA
  39. - User Stock crashes when the user's balance reaches 0, global stock crashes when stock price drops below 1.
  40. - Global stocks automatically re-open after crashing, but all users who had owned stocks lose them.
  41. - User Stocks do not re-open after crashing.
  42. - Todo: figure out if should allow selling stocks to another user gives a boost for stock price.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement