pwislowski / seamless_journal_public

API Bridge between Bybit, Coinbase and Notion Database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

1. Seamless Journal

Real-time Journal for Notion

The Seamless Journal provides near-real-time tracking of positions entered and exited on various exchange platforms and subsequently updates a Notion database.



2. Documentation

TODO:

  • add requirements
  • add environment

2.1. Process

The process currently caputres entering positions into a Notion database and checks if a trade has already been logged on the remote database.

2.1.1. Main process

graph LR; 
A("websocket: bybit");
B("websocket: coinbase");
C["notion db"];

A -.-> C;
B -.-> C;

Loading

2.1.2. Websocket Bybit

graph TD; 
A("check if in position");
Y1("yes");
Y12("check if already logged");

Y21("yes");
Y22("do nothing");

Y31("no");
Y32("log the trade into the file");
Y33("send request to notion db");

N2["No"];
N21["do nothing"];

A -.-> Y1 -.-> Y12 --> Y21 --> Y22;
A -.-> Y1 -.-> Y31 --> Y32 --> Y33;

A -.-> N2 -.-> N21;

Loading

About

API Bridge between Bybit, Coinbase and Notion Database

License:MIT License


Languages

Language:Python 82.2%Language:Jupyter Notebook 17.8%