KuphJr / fidelipy

Semi-automated trading on fidelity.com

Home Page:https://qnevx-fidelipy.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fidelipy

docs license pypi

fidelipy is a simple Python 3.9+ library for semi-automated trading on fidelity.com. The scope is limited to the Trade Stocks/ETFs simplified ticket and Trade Mutual Funds pages.

from fidelipy import Action, Driver, Unit
from playwright.sync_api import sync_playwright

with sync_playwright() as playwright:
    browser = playwright.chromium.launch(headless=False)

    with Driver(browser) as driver:
        input("Log in, then press enter.")

        print(driver.cash_available_to_trade("123456789"))

        print(driver.quote("BCDE"))

        driver.market_order("123456789", "BCDE", Action.BUY, Unit.SHARES, "1")

        input("Press enter to log out.")

Warning

fidelipy asks for manual confirmation: Place order [Y/n]

Pressing enter uses the default value Y meaning yes.

Use

  1. Install Playwright:

    pip install playwright
    playwright install
    
  2. Install fidelipy:

    pip install fidelipy
    
  3. Read the documentation.

Test

Use the Python interpreter in interactive mode:

>>> from fidelipy import Action, Driver, Unit
>>> from playwright.sync_api import sync_playwright

>>> playwright = sync_playwright().start()
>>> driver = Driver(playwright.chromium.launch(headless=False))
>>> driver.__enter__()
>>> # Log in.

>>> driver.quote("BCDE")
>>> # Call more methods.

>>> driver.__exit__()
>>> playwright.stop()

Build

Documentation

Install Sphinx:

pip install sphinx

Then run this command in the docs/ directory:

make html

Distribution package

Install build:

pip install build

Then run this command in the project root directory:

python -m build

About

Semi-automated trading on fidelity.com

https://qnevx-fidelipy.readthedocs.io

License:Apache License 2.0


Languages

Language:Python 100.0%