An open API service indexing awesome lists of open source software.

https://github.com/dbachko/crypto-guard

Crypto Guard
https://github.com/dbachko/crypto-guard

aws crypto es6 nodejs serverless

Last synced: 3 months ago
JSON representation

Crypto Guard

Awesome Lists containing this project

README

          

# Crypto Guard

Makes money while you sleep.

## How to install

1. Clone this repo
2. Run `npm install`
3. Deploy with `serverless deploy`
4. Create `subscribers.json` using this structure: `[{"name": "", "phone": ""}, ...]` inside `crypto-guard-s3-bucket-json` S3 bucket.
5. Create `coinlist.json` inside `crypto-guard-s3-bucket-json` S3 bucket.

## Roadmap

1. Create common wrapper for Trading bot.
2. Implement Triangular arbitrage strategy.
3. Separate codebase into services.
4. Binance: parse

## Crypto coin list update

1. Fetch new list from a Browser console:

```javascript
const res = await fetch('https://min-api.cryptocompare.com/data/all/coinlist');
const json = await res.json();
JSON.stringify(Object.keys(json.Data).sort());
```

## Binance symbols update

1. Go to
2. Run this in a Browser console:

```javascript
let tbl = $('table tr:has(td)')
.map(function () {
const $td = $('td', this);
return [[$td.eq(1).text().replace('/', ''), $td.eq(2).text()]];
})
.get();

JSON.stringify(tbl);
```