Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make indicators optional and allow different candle lenghts #25

Open
rulezzpt opened this issue May 4, 2021 · 2 comments · May be fixed by #29
Open

Make indicators optional and allow different candle lenghts #25

rulezzpt opened this issue May 4, 2021 · 2 comments · May be fixed by #29
Labels
f: indicators Relating to technical indicators or their implementation framework Issues with the framework of the bot p: new feature Request or issue to track new feature P2 General bugs or refactors proposal Proposal for a change or new feature

Comments

@rulezzpt
Copy link

rulezzpt commented May 4, 2021

First of all I would like to thank you for your dedication to creating this BOT that for the short time I tested it seems to work well and even stable.

I would like to know if it is possible to just activate one indicator instead of having 3 to activate constantly.
That is, instead of having the 3 (BB, MACD and RSI) just activate the purchase with one that I define, be it MACD, SMA or any other.

Another thing is whether it is possible to change the time chart from 5 to 15 minutes or 1 hour.

Thanks .

@rulezzpt rulezzpt added the proposal Proposal for a change or new feature label May 4, 2021
@markusaksli
Copy link
Owner

Hi @rulezzpt and thanks for the kind words.

These are changes that we are planning to implement for the next version of the bot, which will be a major rework of some key areas. Since the two main guys working on this (me and @martentyrk) are still university students and this is a side project we can't provide a clear timeline for this though.

@markusaksli markusaksli added f: indicators Relating to technical indicators or their implementation framework Issues with the framework of the bot P2 General bugs or refactors p: new feature Request or issue to track new feature labels May 6, 2021
@markusaksli markusaksli changed the title Indicators and time chart Make indicators optional and allow different candle lenghts May 10, 2021
@markusaksli
Copy link
Owner

The functionality for optional indicators is now completed for the next version. The new config file is in YAML format and will look something like this:

moneyPerTrade: 0.1
trailingSl: 0.1
takeProfit: 0.15

confluenceToOpen: 2
# confluenceToClose: 2
indicators:
  - !<RSI>
    weight: 1
    period: 14
    positiveMax: 15
    positiveMin: 30
    negativeMax: 70
    negativeMin: 80
  - !<MACD>
    weight: 1
    shortPeriod: 12
    longPeriod: 26
    signalPeriod: 9
    requiredChange: 0.15
  - !<DBB>
    weight: 1
    period: 20

@markusaksli markusaksli linked a pull request Jun 25, 2021 that will close this issue
@markusaksli markusaksli linked a pull request Jun 25, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
f: indicators Relating to technical indicators or their implementation framework Issues with the framework of the bot p: new feature Request or issue to track new feature P2 General bugs or refactors proposal Proposal for a change or new feature
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants