RSI variable trigger

Forums ProRealTime English forum ProOrder support RSI variable trigger

Viewing 7 posts - 1 through 7 (of 7 total)
  • #183602

    I read this – I know it is just a simple scalping setup, but I am still earning and I wondered how would you code this?

    For a buy entry, wait for the price to rise above the 200-EMA, where the RSI should fall below 40 (but not below 25). Wait for the RSI to go back above 40 and enter at the candle close corresponding to when the RSI crosses above 40. Make sure to set your stop-loss (SL) at the swing low created by the bullish price increase and set take-profit (TP) at two times the risk on the SL.

    I don’t know enough on how you get it to monitor the RSI continously from the price rising above the 200-EMA – if this is at all possible?

    Would you do a MYCONDITION to setup the 200-EMA cross?

    Then set a trigger 1 for falling below 40 RSI? But then how do you write in that it shouldn’t fall below 25? and that it needs to go back above 40 before entering the trade?

    Thanks

     

    #183607
    JS

    Something like this:

    Only your stop loss is now at the place where the price crosses the RSI above 40.

    I think that when you set these conditions (RSI Crosses Over 40) that you can never find out the previous Swing Low.

    #183610

    Yes I got as far as you got, but then there is no way to programme in a series of triggers which it has to hit in sequence?

    i.e hit target 1, then hit target 2, then hit target 3 when these 3 are hit in sequence trigger ..

    #183611
    JS

    Target 1 =Close Crosses Over ExponentialAverage[200](close)

    Target 2 =RSI[14](close) Crosses Over 40 + Target 1

    Can you tell me what Target 3 is? 🙂

     

    #183628

    Yeah but this is the problem isn’t it?

    The 3rd criteria shall we call it – rather than a target is that it needs to fall below 40, but not below 25.

    And that these  criteria / targets need to happen in sequence otherwise the move is invalid, but I see you tackle this by adding the previous target to the next targets criteria?

    So I guess it is how you get it to understand that it is a moving timeframe and not a specific moment in time.

     

     

     

     

    #183636
    JS

    The “RSI Crosses Over 40” guarantees that the RSI has been below 40 before that because it crosses from below 40 to above 40 (and the RSI is then of course also >  25).

    Thus, no position is opened when the RSI < 40 or when the RSI < 25.

    You can possibly set an extra condition that, for example, the RSI MUST first hit the 25, but I do not know if you want that.

    In any case, it must be unambiguously fixed what needs to be done otherwise you cannot program it.

    #183665

    Try this one, it will spot any Ema200 crossover while Rsi < 40, then waits for an Rsi crossover (provided it did not fall below 25, in between):

     

     

Viewing 7 posts - 1 through 7 (of 7 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login