TBMoonwalker / 3cqsbot

Service who use 3CQS signals to manage 3Commas DCS bots
36 stars 24 forks source link

Wish: When signal received validate other conditions. #39

Closed pvdochtend closed 2 years ago

pvdochtend commented 2 years ago

I would like to have the option to include extra conditions when a signal is received.

Example: Signal is received also check if [{"options": {"time": "3m", "points": "100"}, "strategy": "rsi"}] is applicable.

It would be great if that's applicable for single bots.

TBMoonwalker commented 2 years ago

You already can set deal strategies? or do I misunderstood something?

pvdochtend commented 2 years ago

That's correct. But can I combine it is my question.. Well I didn't wrote it like a question :)

Can I enable multiple lines in the config.ini? For example:

deal_mode = signal deal_mode = [{"options": {"time": "3m", "points": "100"}, "strategy": "rsi"}]

or combine it ? deal_mode = [signal, {"options": {"time": "3m", "points": "100"}, "strategy": "rsi"}]

TBMoonwalker commented 2 years ago

This makes no sense, because it is always reacting to the signal. If you change from signal to a 3comma configuration, it just mean that it isn't starting the deal not asap. It is written down in the readme.

pvdochtend commented 2 years ago

Clear. Than I didn't understand it correctly.

The signal itself is offcourse already creating the (single) bot so adding it to the deal_mode next to some other start conditions has no value.