Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
mkramlich
on June 10, 2010
|
parent
|
context
|
favorite
| on:
AI That Picks Stocks Better Than the Pros
here's one in Python:
import random
stocks = (ibm, apple, ...)
stock_to_buy = random.choice(stocks)
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
import random
stocks = (ibm, apple, ...)
stock_to_buy = random.choice(stocks)