diff --git a/README.md b/README.md index 5de0e92..eab9a9a 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ This is not an official api! This api's functionality may change at any time. This api provides a means of buying and selling stocks through Firstrade. It uses the Session class from requests to get authorization cookies. The rest is done with reverse engineered requests to Firstrade's API. +In order to use Fractional shares you must accept the agreement on the website before using it in this API. + --- ## Contribution @@ -78,7 +80,7 @@ ft_order.place_order( symbol="INTC", price_type=order.PriceType.MARKET, order_type=order.OrderType.BUY, - quantity=1, # number of shares or amount of dollar, depnds on the value of notional + quantity=1, # number of shares or amount of dollar, depends on the value of notional duration=order.Duration.DAY, dry_run=True, notional=False, # set to True if quantity above is "dollar" diff --git a/setup.py b/setup.py index a62a936..a91dd7e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="firstrade", - version="0.0.14", + version="0.0.15", author="MaxxRK", author_email="maxxrk@pm.me", description="An unofficial API for Firstrade", @@ -13,7 +13,7 @@ long_description_content_type="text/markdown", license="MIT", url="https://github.com/MaxxRK/firstrade-api", - download_url="https://github.com/MaxxRK/firstrade-api/archive/refs/tags/0014.tar.gz", + download_url="https://github.com/MaxxRK/firstrade-api/archive/refs/tags/0015.tar.gz", keywords=["FIRSTRADE", "API"], install_requires=["requests", "beautifulsoup4", "lxml"], packages=["firstrade"],