Metadata-Version: 2.1
Name: polygon-forex-aggregate
Version: 0.1.0
Summary: A currency exchange rate collector using polygon's forex API
Home-page: https://polygon_forex_aggregate.readthedocs.io/
Author: Kuanzhi Wang
Author-email: kw3075@nyu.edu
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

## A simple polygon forex aggregate library using Max Christ’s code



# this is only meant for a class project. 



This library is capable of collecting currency exchange rate from polygon every second and then aggregate every six minutes of data

into a single table entry. The condensed data then can be used to do data processing on top of it.



The main loop will continuously collect data for 24 Hours with 10 preset currency exchanges.



To use this, simply

```commandline

pip install polygon_forex_aggregate

```



and in your main code, do

``` python

from polygon_forex_aggregate import *

```



I know this is not the best way to import a package, however, this is the limitation of the code where you need to import everything.

