Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cwshugg/snowbroker
My attempt at writing software to make money on the stock market without my intervention.
https://github.com/cwshugg/snowbroker
Last synced: 9 days ago
JSON representation
My attempt at writing software to make money on the stock market without my intervention.
- Host: GitHub
- URL: https://github.com/cwshugg/snowbroker
- Owner: cwshugg
- Created: 2021-12-08T14:31:43.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-21T01:03:09.000Z (over 2 years ago)
- Last Synced: 2024-10-18T06:15:32.282Z (3 months ago)
- Language: Python
- Size: 73.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Snowbroker
This repository contains my attempt to have a computer make money for me on the stock market so I can spend my time doing other things. Here's my implementation plan:
- Write an underlying interface for reading the stock market and submitting trades.
- Implement multiple "strategies" that all use this interface.By having multiple strategies, I figure I can pick and choose which ones I want to fire off at a specific time.
# File Breakdown
The files in this repository are as follows:
- `src/` contains all Python source files.
- `src/sbi/` contains the underlying interface ("Snow Banker Interface") strategies will use.
- `src/strats/` contains all implemented strategies.