Metadata-Version: 2.1
Name: goldhand
Version: 14.6
Summary: A package working with financial data
Home-page: https://github.com/misrori/goldhand
Author: Mihaly
Author-email: ormraat.pte@gmail.com
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: pandas_datareader
Requires-Dist: pandas
Requires-Dist: pandas_ta
Requires-Dist: plotly
Requires-Dist: scipy
Requires-Dist: numpy
Requires-Dist: requests
Requires-Dist: cloudscraper
Requires-Dist: tqdm

# Goldhand
The ultimate python package to work with stock and crypto data

```bash
pip install goldhand
```



# TradingView


```python
from goldhand import *

# tradingView data
tw = Tw()

# data frame of the stocks 
tw.stock

# data frame of the top 300 crypto currency
tw.crypto
```

```python
# Get a plot of the stock to see the location in the sector 
tw.get_sec_plot('AMD')

```
![Sector plot](https://github.com/misrori/goldhand/blob/main/img/sec_plot.png?raw=true "Sector location of FDS")


```python
# Get a plot of the stock to see the location in the industry 
tw.get_sec_plot('AMD')

```
![Sector plot](https://github.com/misrori/goldhand/blob/main/img/ind_plot.png?raw=true  "Sector location of FDS")



# Goldhand class


```python

# Get a detailed chart of a stock AMD
ticker = "AMD"
t = GoldHand(ticker)
t.df.tail().T
```
![data structure](https://github.com/misrori/goldhand/blob/main/img/df_structure.png?raw=true "data structure")


```python

# Get a detailed chart of a stock AMD
ticker = "AMD"
t = GoldHand(ticker)
t.plotly_last_year(tw.get_plotly_title(ticker)).show()

```
!['Detailed stock chart'](https://github.com/misrori/goldhand/blob/main/img/stock_plot.png?raw=true  "Stock plot")

```python

# Get a detailed chart of a crypto
ticker = "BTC-USD"
t = GoldHand(ticker)
t.plotly_last_year(tw.get_plotly_title(ticker)).show()


```
!['Detailed crypto chart'](https://github.com/misrori/goldhand/blob/main/img/crypto_plot.png?raw=true  "crypto plot")




