From fd51c168558385d52136c84a7f6867bf8c773d3c Mon Sep 17 00:00:00 2001 From: olli Date: Thu, 20 Jun 2024 21:15:18 +0200 Subject: [PATCH] doc --- README.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a27beb8..978f368 100644 --- a/README.md +++ b/README.md @@ -37,12 +37,32 @@ Each part runs parallel to the others in its own docker-container. - parallel processing in separate docker containers ## Dabo Bot -## Dabo Symbol Tticker -## Dabo OHLCV Candles +- place limit and market orders and supports ... +- ... leverage trading +- ... short trades +- ... margins cross and isolated +## Dabo Symbol Ticker +- automatically finds all supported tokens and pairs and fetches continiously ... +- ... symbols +- ... and prices +## Dabo OHLCV Candle data +OHLCV = Open, High, Low, Close and Volume of a time unit +- time units 1w, 1d, 4h, 1h, 15m and 5m +- 4h, 1h, 15m and 5m from the respective stock exchange +- 1d and 1w data from yahoo finace to have longer terms ## Dabo Indicators +- data per time unit +- time units 1w, 1d, 4h, 1h, 15m and 5m +- self-calculated EMA12, 26 ,50, 100, 200, 400 and 800 +- self-calculated RSI5, 14, 21 +- self-calculated MACD +## Dabo Market Data +- Yahoo Finance ## Dabo Orders ## Dabo Transaction History +- Support of additional Exchnages/Brokers JustTrade (CSV-Import) and Bitpanda (API+CSV-Import) ## Dabo Webpage +- ReadOnly Overview - Consideration of trading fees - Automatic selection of cryptocurrencies to invest in @@ -74,9 +94,12 @@ Each part runs parallel to the others in its own docker-container. # Why bash? Yes, bash is not a language in which you write something like this in a normal way. + To be honest, I'm more of a Linux admin than a programmer, so I do a lot of my work using bash. Simply it's the language I'm most familiar with. + Originally this project was supposed to be a simple script to monitor prices of equities and ETFs and set alarms at certain marks. Over time it has expanded a lot and a complete rewrite in another language would have meant a lot of additional work. So it has stayed that way until now. + Finally, it's a hobby project and I have to see how and when I can find time for it. If there is someone who would like to rewrite this bot in e.g. Python, I would be happy to support them as best I can with this task. Just let me know.