Metadata-Version: 2.1
Name: jgtpy
Version: 0.1.27
Summary: Enhanced JGTPy
Home-page: https://github.com/jgwill/jgtpy
Author: GUillaume Isabelle
Author-email: Guillaume Isabelle <jgi@jgwill.com>
License: MIT
Project-URL: Homepage, https://github.com/jgwill/jgtpy
Project-URL: Bug Tracker, https://github.com/jgwill/jgtpy/issues
Keywords: data
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: dev-lint
Provides-Extra: dev-test
Provides-Extra: dev-docs
License-File: LICENSE
License-File: AUTHORS



# jgtpy

JGTPyIndicators Prep Service


## Installation
```sh
pip install -U jgtpy
```

## Example

```py

    >>> import pandas as pd
    >>> import jgtpy
    >>> df=jgtpy.getPH('EUR/USD','H4')
    >>>
    >>> # retrieve 3000 periods and generate from the DF
    >>> df=jgtpy.getPH('EUR/USD','H4',3000,with_index=False)
    >>> dfi=jgtpy.createFromDF(df)
    >>>
    >>> # Create with Timerange
    >>> start="11.17.2022 00:00:00"
    >>> end="11.25.2022 00:00:00"
    >>> df=jgtpy.createByRange("USD/CAD","m15",start,end)

```

