Skip to content

Commit

Permalink
readme update bump setup
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxrk committed Apr 5, 2024
1 parent dbc676b commit fdbc3ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

setuptools.setup(
name="firstrade",
version="0.0.14",
version="0.0.15",
author="MaxxRK",
author_email="[email protected]",
description="An unofficial API for Firstrade",
long_description=long_description,
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"],
Expand Down

0 comments on commit fdbc3ac

Please sign in to comment.