sthewissen / Mynt

An Azure Functions-based crypto currency trading bot; featuring 10 exchanges, 25 indicators, custom strategy support, backtester and more

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Web interface to gain insights in your trades

sthewissen opened this issue · comments

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:

  • Current trades
  • Trade history

Optional:

  • Immediately sell a trade

We should do a new folder with mynt.ui

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

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

I would love to see that too

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

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.

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

@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?

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?