goldhand 1.1.4__py3-none-any.whl → 1.1.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of goldhand might be problematic. Click here for more details.

@@ -0,0 +1,100 @@
1
+ Metadata-Version: 2.1
2
+ Name: goldhand
3
+ Version: 1.1.6
4
+ Summary: A package working with financial data
5
+ Home-page: https://github.com/misrori/goldhand
6
+ Author: Mihaly
7
+ Author-email: ormraat.pte@gmail.com
8
+ License: MIT
9
+ Platform: UNKNOWN
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: cloudscraper
12
+ Requires-Dist: numpy
13
+ Requires-Dist: pandas
14
+ Requires-Dist: pandas-datareader
15
+ Requires-Dist: pandas-ta
16
+ Requires-Dist: plotly
17
+ Requires-Dist: requests
18
+ Requires-Dist: scipy
19
+
20
+ # Goldhand
21
+ The ultimate python package to work with stock and crypto data
22
+
23
+ ```bash
24
+ pip install goldhand
25
+ ```
26
+
27
+
28
+
29
+ # TradingView
30
+
31
+
32
+ ```python
33
+ from goldhand import *
34
+
35
+ # tradingView data
36
+ tw = Tw()
37
+
38
+ # data frame of the stocks
39
+ tw.stock
40
+
41
+ # data frame of the top 300 crypto currency
42
+ tw.crypto
43
+ ```
44
+
45
+ ```python
46
+ # Get a plot of the stock to see the location in the sector
47
+ tw.get_sec_plot('AMD')
48
+
49
+ ```
50
+ ![Sector plot](https://github.com/misrori/goldhand/blob/main/img/sec_plot.png?raw=true "Sector location of FDS")
51
+
52
+
53
+ ```python
54
+ # Get a plot of the stock to see the location in the industry
55
+ tw.get_sec_plot('AMD')
56
+
57
+ ```
58
+ ![Sector plot](https://github.com/misrori/goldhand/blob/main/img/ind_plot.png?raw=true "Sector location of FDS")
59
+
60
+
61
+
62
+ # Goldhand class
63
+
64
+
65
+ ```python
66
+
67
+ # Get a detailed chart of a stock AMD
68
+ ticker = "AMD"
69
+ t = GoldHand(ticker)
70
+ t.df.tail().T
71
+ ```
72
+ ![data structure](https://github.com/misrori/goldhand/blob/main/img/df_structure.png?raw=true "data structure")
73
+
74
+
75
+ ```python
76
+
77
+ # Get a detailed chart of a stock AMD
78
+ ticker = "AMD"
79
+ t = GoldHand(ticker)
80
+ t.plotly_last_year(tw.get_plotly_title(ticker)).show()
81
+
82
+ ```
83
+ !['Detailed stock chart'](https://github.com/misrori/goldhand/blob/main/img/stock_plot.png?raw=true "Stock plot")
84
+
85
+ ```python
86
+
87
+ # Get a detailed chart of a crypto
88
+ ticker = "BTC-USD"
89
+ t = GoldHand(ticker)
90
+ t.plotly_last_year(tw.get_plotly_title(ticker)).show()
91
+
92
+
93
+ ```
94
+ !['Detailed crypto chart'](https://github.com/misrori/goldhand/blob/main/img/crypto_plot.png?raw=true "crypto plot")
95
+
96
+
97
+
98
+
99
+
100
+
@@ -2,7 +2,7 @@ goldhand/__init__.py,sha256=ihEkhO-z6MG_h27u4Mf6dAldHfhFpz55Zc3b8l96baE,64
2
2
  goldhand/helpers.py,sha256=l9yn0kVTiwfUR8sI5nH1QFx6dYikaUQgRA227Ox7hs0,6130
3
3
  goldhand/stocks.py,sha256=1nDH6lbaMnSrQONPpOG3ulvWQHmoPaieez1bW0448c4,7443
4
4
  goldhand/tw.py,sha256=oSJija_3SVxVGpG3pop0jiOx7herxB84ir2x0Zy-DA8,8119
5
- goldhand-1.1.4.dist-info/METADATA,sha256=Pyg2gn7b5hd_354FimgcrLdZOXO2A-AiAwzfJOtN9aA,406
6
- goldhand-1.1.4.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
7
- goldhand-1.1.4.dist-info/top_level.txt,sha256=siEJ2_a_Fx_7hqRI4Ms6SzCelbXrK_1H_eOF8KAaMdA,9
8
- goldhand-1.1.4.dist-info/RECORD,,
5
+ goldhand-1.1.6.dist-info/METADATA,sha256=0Kamr3XrodFNiibNKGCselSffQPxCc18413rB4RTu2U,1953
6
+ goldhand-1.1.6.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
7
+ goldhand-1.1.6.dist-info/top_level.txt,sha256=siEJ2_a_Fx_7hqRI4Ms6SzCelbXrK_1H_eOF8KAaMdA,9
8
+ goldhand-1.1.6.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: goldhand
3
- Version: 1.1.4
4
- Summary: A package working with financial data
5
- Home-page: UNKNOWN
6
- Author: Mihaly
7
- Author-email: ormraat.pte@gmail.com
8
- License: MIT
9
- Platform: UNKNOWN
10
- Requires-Dist: cloudscraper
11
- Requires-Dist: numpy
12
- Requires-Dist: pandas
13
- Requires-Dist: pandas-datareader
14
- Requires-Dist: pandas-ta
15
- Requires-Dist: plotly
16
- Requires-Dist: requests
17
- Requires-Dist: scipy
18
-
19
- UNKNOWN
20
-