Few questions about entry and exit signals #340
-
Hi! I am trying to use imported indicators but I am having problems with setting the entry and exit signals. For an example: some indicators are just oscillators. I imported Chaikin Money Flow Indicator from Python ta Also: How can I set signal which are more complicated? I mean, not one but two or even more conditions must be met to execute an entry or exit order. For example: MA 14 crosses above MA 50 and at the same time RSI is at least 50, and CMF 0.1 or more. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@Krzysiek191 for each input and output there is |
Beta Was this translation helpful? Give feedback.
@Krzysiek191 for each input and output there is
_above
and_below
method (chaikin_money_flow_above
, etc.). Other than this, you need to elaborate why exactly CMF>0 and CMF<0.2 don't do the job.