Metadata-Version: 2.1
Name: Polygon-forex
Version: 0.1.0
Summary: Demo library
Home-page: https://Polygon_forex.readthedocs.io/
Author: Runfei Mao
Author-email: example@email.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: numpy

# polygon

Data engineering HW1



### Install

pip install Polygon



## Get started

```Python

from Polygon_forex import AUDUSD_return

#Instantiate a object

#avg price = 1

A = AUDUSD_return(tick_time="2022-06-04 10:39:06",avg_price=1)

A.last_price = 10

A.hist_return = 100

A.run_sum = 100.0

A.num = 10

#pop price = 2

#Get avg return

print("The average return of AUDUSD is:")

print(A.get_avg(pop_value=2.0))

'''

