Skip to content

I'm following a tutorial to use NLP models to predict Crypto Coins. Will implement this into a larger project later, but this is a smaller piece to a larger solution.

Notifications You must be signed in to change notification settings

Mparker25/CryptoPredictor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypto Predictor

Following this Tutorial

Also using openblender.io

Difference of Logs

Using Difference of Logs can tell you percentage changes

# percent_diff = log('price') - log('open')
df['log_diff'] = np.log(df['price']) - np.log(df['open'])

Track percentage changes over each day and tell how well your crypto is doing.

This alone doesn't help you predict but maybe you can make a model that can precict based on twitter news data

Side-Note

Mid-way through this project, I found an interesting story on intel as I see on the TV that Intel dropped 20% on it's Data Center Sales. Why You Should Short Intel

TLDR: Intel is building 2 new fabs in Arizona for $20 Billion. They are creating 10nm chips while everyone is moving onto 3nm chips. Intel is roughly a decade behind and plans on speninding large swathes of cash to play catchup, whilst also losing revenue. They are gambling against $20 Billion Upkeep and diminishing profits vs regaining traction and profit. I'm interested in learning if shorting Intel is a smart move and how to do it!

About

I'm following a tutorial to use NLP models to predict Crypto Coins. Will implement this into a larger project later, but this is a smaller piece to a larger solution.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages