jackmoody11/stockscore

Add Current Ratio Test

Closed this issue · 1 comments

Is your feature request related to a problem? Please describe.
No, this is not related to a problem.
Describe the solution you'd like
Use a logarithmic type function so that any current ratios below 1 subtract and any greater than 1 add to the score, but slower as they get larger. Cut it off after a certain point - like 20 and set a max score of 3 for all with CR > 20.
Describe alternatives you've considered
Could use linear type model like score = (CR-1)/2 or
Additional context
screen shot 2018-07-05 at 6 52 43 pm
Picture of logarithm and line described. Would need to make minimum value for logarithm like function so that score can't go to -inf

Ended up doing a simple test: Add 1 point for CR >=1 and add 2 for CR >= 1.5. Can adjust as needed. Need to look into allowing users to easily change scoring criteria (maybe through GUI).