Skip to content

A discord bot that manages crypto exit strategies (cost basis and percentage sells) and alerts users when sell targets are reached.

License

Notifications You must be signed in to change notification settings

ryxavyer/sellsage

Repository files navigation

SellSage Banner

SellSage

SellSage is a Discord bot which helps cryptocurrency investors manage their exit strategies. Unlike simple price alert bots, SellSage manages sophisticated exit plans for the investor, including considerations such as cost basis and percentage based sell targets, and alerts them when the specified sell targets are met. This makes life easier for investors because they no longer have to constantly watch prices or pull up spreadsheets to figure out when or how much of their holdings to sell. Simply tell SellSage the details of your exit plan and enjoy being able to relax while you wait for the notifications.

Getting Started

This project is built with Node.js, Typescript, and SQLite.

Pull the repo and install dependencies using npm install.

.env

Setup a .env file in the base directory with

You should be able to set everything up for development for free - at the time of writing this CoinGekko has a demo tier for their API. I opted to host on Railway.

Database

You can setup the database for development using npm run init-db-dev. There are also extra utility functions / npm scripts to help manage the database in src/database.

As is, adding support for additional unique (see Scaling SellSage -> Database) tickers is trivial. Simply add to the SUPPORTED_TICKERS constant and re-run the seed.ts database script. If your database is already set up, you might have to run wipe.ts first to avoid conflicts or better yet create a script that only wipes the crypto table.

Syncing Slash Commands

Discord slash commands are defined in the src/commands/register.ts script. You can use npm run register-discord-commands to push / sync the commands.

Running SellSage

Once the steps above are complete, simply use npm run dev to start the development server.

Start a DM with your bot and use /help to see all commands and descriptions at once.

Scaling SellSage

This project was created quickly to accomplish the minimum functionality needed for myself and a handful of friends. If you're interested in scaling this to thousands of users, below are a couple important things you will need to improve.

Database

I designed the crypto table with unique symbols for MVP simplicity. This won't do if you want this to scale to thousands of coins on hundreds of networks as symbol uniqueness is not guaranteed. You will also inevitably need a better database solution to handle increased concurrency.

Market Update Frequency

The cron job which watches price changes in the market is set up to run every 5 minutes in order to stay under the demo tier limits of the CoinGekko API. If you want to scale with a premium account, you can update the frequency of the job in src/cron/watcher.ts.

About

A discord bot that manages crypto exit strategies (cost basis and percentage sells) and alerts users when sell targets are reached.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published