sthewissen / Mynt

An Azure Functions-based crypto currency trading bot; featuring 10 exchanges, 25 indicators, custom strategy support, backtester and more
BSD 3-Clause "New" or "Revised" License
238 stars 130 forks source link

Web interface to gain insights in your trades #25

Open sthewissen opened 6 years ago

sthewissen commented 6 years ago

A web interface to be able to see what kind of trades you're running would be a great enhancement. It should take into account #24 when it's done and in my opinion should have features such as:

Must:

Optional:

twixwix commented 6 years ago

We should do a new folder with mynt.ui

KennedyIhe commented 6 years ago

I built a xamarin forms android tablet app as a UI for this repo

sthewissen commented 6 years ago

I'd love to see that! Perhaps with some tweaks we can make it the official app :)

twixwix commented 6 years ago

I would love to see that too

KennedyIhe commented 6 years ago

When I have some time within the next few days, hopefully this weekend, I will make a PR

dinckaniskan commented 6 years ago

I'd love to see an official UI for the solution. I've been feeding ochlv data into https://www.highcharts.com/stock/demo/candlestick which is pretty nice, you can add additional indicators to the chart such as RSI etc (like in binance etc). I think being able to overlay strategy buy/sell signal points and actual buy/sell points to really see what your strategy is doing for an asset would be amazing.

novecento commented 6 years ago

I've done a simple candlestick chart with buy/sell signals with http://techanjs.org/, saving signals on file by backtesting. image

micasa001 commented 6 years ago

@novecento the Mint UI is not added already right now? Would the TradingView HTML5 library be a solution for this issue or are there better WIP part doing right now?

novecento commented 6 years ago

Hi @micasa001, the UI project is here https://github.com/LORDofDOOM/MyntUI, charts are not yet included, now Mynt is DB based instead of my charts experiment works with file for signals/candles (old Mynt), so I have to work on it to use DB as well.

TradingView HTML5 library could be interesting, I have to check if it is free.

The goal of charts is verify strategies visually with backtesting data.

I'd like to show candles (ok), signals (ok) but also the indicators (macd, rsi, adx, stoch and so on) used by strategies, so it could be simple to view and understand strategies, specially inside unusual bear/bull conditions, to improve strategies and be rich asap :-)

Are you working on it like us?