freqtrade / technical

Various indicators developed or collected for the Freqtrade

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Non-binary signals

bab3nk0v opened this issue · comments

Let's consider the following setup: we have 10 open slots for trades and 30 possible pairs that we can buy.

The strategy can possibly have a way to distinguish between more and less likely to win pairs, but currently there is no way to set some priority to them, we can only return 0 or 1.

What if we can give strategy an ability to set some values in [0..1](smth like strategy confidence score) in populate_ methods, then freqtrade will sort the pairs according to this score and buy most reliable ones?

If it seems reasonable, i can try to implement it as some additional option in config(or a custom pairlist handler, but i'm not sure about it). It definitely won't break the strategy API since it still will be able to return all ones/zeros instead of scores.

Wrong project, sorry:)