RSI Cross above / Cross Below
-
Hi,
I am hoping someone could enlighten me as I am quite new to this and I cannot figure out why it doesn't trigger as I would like.All I am trying to do is:
When RSI signal crosses Above 34 the EA creates 1 Buy
When RSI signal crosses Below 64 the EA creates 1 Sell
I have ran the EA on demo and live however on both the EA will sometimes trigger at the cross or sometimes at any point when it is above/below the trigger level.Thannsk in advance for any tips.
Donovan
link to my project :shared/4e5v5gRX
-
@doudou-7 Move all to the side and test 1 block at a time until you find witch 1 is causing the trouble, you do not need once per tick as no trade block will restrict to 1 (I have never used), it is likely the hours filter because to me the time is 00:00 to 00:00, I personally would use 00:01 to 23:59 as 2 minutes in a day doesn't matter to me.
-
Re: RSI Cross above / Cross Below
@jstap
Thanks for your response.
I dont think the time is an issue as the EA creates trades, but it creates "too many of them".It should only open a trade if :
- SELL: RSI falls and crosses 64 (Whilst dropping)
- BUY: RSI rises and crosses 34 (whilst rising)
At the moment it creates trades when it crosses 64 upwards AND whils being in the overbought zone (opposite for the bottom)
Donovan
-
@doudou-7 Try putting the no trade block above the condition blocks but, these should restrict EA to onlt one trade at a time.