mertcan93 commited on
Commit
496c265
Β·
1 Parent(s): ac03286

main stocks models

Browse files
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # πŸ“ˆ Stock & Crypto Prediction Models
2
+
3
+ This repository contains machine learning models trained for stock and cryptocurrency price prediction.
4
+
5
+ ## πŸ“ Models
6
+
7
+ ### πŸͺ™ Cryptocurrency Models
8
+ - **stock_model_crypto_5m.joblib** - 5-minute price prediction model for cryptocurrencies
9
+ - **scaler_crypto_5m.joblib** - Data preprocessing scaler for crypto model
10
+
11
+ ### πŸ“Š Stock Models
12
+ - **stock_model_daily.joblib** - Daily price prediction model for stocks
13
+ - **scaler_daily.joblib** - Data preprocessing scaler for daily model
14
+ - **stock_model_1h.joblib** - 1-hour price prediction model for stocks
15
+ - **scaler_1h.joblib** - Data preprocessing scaler for hourly model
16
+
17
+ ## πŸ”§ Usage
18
+
19
+ ### Loading Models
20
+ ```python
21
+ import joblib
22
+ import numpy as np
23
+
24
+ # Crypto 5-minute model
25
+ crypto_model = joblib.load('stock_model_crypto_5m.joblib')
26
+ crypto_scaler = joblib.load('scaler_crypto_5m.joblib')
27
+
28
+ # Stock daily model
29
+ daily_model = joblib.load('stock_model_daily.joblib')
30
+ daily_scaler = joblib.load('scaler_daily.joblib')
31
+
32
+ # Stock hourly model
33
+ hourly_model = joblib.load('stock_model_1h.joblib')
34
+ hourly_scaler = joblib.load('scaler_1h.joblib')
35
+ ```
36
+
37
+ ### Making Predictions
38
+ ```python
39
+ # Normalize data with scaler
40
+ scaled_data = crypto_scaler.transform(your_crypto_data)
41
+
42
+ # Make prediction
43
+ prediction = crypto_model.predict(scaled_data)
44
+ ```
45
+
46
+ ## πŸ“‹ Model Specifications
47
+
48
+ | Model | Timeframe | Asset Type | Use Case |
49
+ |-------|-----------|------------|----------|
50
+ | stock_model_crypto_5m | 5 minutes | Cryptocurrencies | Short-term crypto prediction |
51
+ | stock_model_daily | Daily | Stocks | Long-term stock prediction |
52
+ | stock_model_1h | 1 hour | Stocks | Medium-term stock prediction |
53
+
54
+ ## ⚠️ Important Notes
55
+
56
+ - Models are trained based on historical data
57
+ - Not investment advice
58
+ - Preprocess your data appropriately before use
59
+ - Each model must be used with its corresponding scaler
60
+
61
+ ## πŸ“„ License
62
+
63
+ MIT License - see .gitattributes file for details
scaler_1h.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41855da7a71866d85212e54ac9e70a41550d6b75658c8b8f4a95d6b1e1d905f3
3
+ size 1247
scaler_crypto_5m.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:172de4fc14af1c15c72812bb83f9b5f00c46b7e9568f1fe08d4787567570c65e
3
+ size 1183
scaler_daily.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d86cc4e1e349cbc3658eb4f665d102666778ad28ce3ce48abe12bdde9c229162
3
+ size 1247
stock_model_1h.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c948dc75d41f89762d2c82b06dc132192c094767e13e50c4739cb9f216585547
3
+ size 2272696329
stock_model_crypto_5m.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:901b1cb0fae539224c2f29705b731d12ae2315e4e353f62a806106109b7a99b5
3
+ size 257198873
stock_model_daily.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a91a3b0835a93118e9738c0a3ece0f4275d593d3ad10f44684b6faa3e034391
3
+ size 2148489449