if rsi > 50 create buys but if rsi > 60 dont create buy !!!
-
hello
I want if rsi > 50 create order buy but rsi > 60 don't create order buy
I want create only between 50 to 60
how I do that ? please example
thank you
-
__hello
I want if rsi > 50 create order buy but rsi > 60 don't create order buy
I want create only between 50 to 60
how I do that ? please example
thank you[/quote:2cwtazg6]
Just use 2 blocks and link it with the AND block.
......
Screenshot_1.png -
thank you
but I found problem
rsi > 50 ok create order buy
rsi > 60 ok don't create order
but when rsi < 60 when chart down or rsi down create buy --------- this problem
I want create buy when rsi > 50 when chart up or rsi up but when chart down or rsi down don't create
-
You need to decide when you consider the chart or RSI is down and over what timescale.
Example, is it last bar was down or has the RSI crossed down past the 70 level or something else then you can program it.
Cheers
Alan
-
__thank you
but I found problem
rsi > 50 ok create order buy
rsi > 60 ok don't create order
but when rsi < 60 when chart down or rsi down create buy --------- this problem
I want create buy when rsi > 50 when chart up or rsi up but when chart down or rsi down don't create[/quote:1w18ts24]
Just add another condition that RSI previous candle ID must be lower than RSI current candle.
Doing this you might see that signals are premature so you could also try Candle ID 2 < Candle ID1
......
Screenshot_1.png -
thank you
for your time