RSI crossover EMA strategy

If 9 days RSI crossover to 5 days EMA for BUY i.e Value of RSI<EMA

If 9 days RSI crossover to 5 days EMA for SELL i.e Value of RSI>EMA

​Please do the needfull ASAP

As per the above condition 

BuyScript:

CROSSOVER(EMA(CLOSE,5),RSI(CLOSE,14))

SellScript:

CROSSOVER(RSI(CLOSE,14),EMA(CLOSE,5))

verify your condition once.. you can give RSI value range in between 1 to 100 , 

RSI is always between 0 to 100, so how it will cross EMA of something like index (in 8000 level ) or any stock which is above 100-150 Rs?

I think what you are looking for is the 9 day RSI of the 5 day EMA should cross 9 day RSI of 14 day EMA for buying and vice versa for sell.

BUY script:
SET A=RSI(EMA(CLOSE,5),9)
SET B=RSI(EMA(CLOSE,14),9)
CROSSOVER(A,B)

Dear,
Error coming ( Argument of function ‘crossover’ not optional )
Please suggest for the error Thanks

Please check now… corrected

still getting error of Scripts generated no trades

also getting another “error at least buy and sell scripts are typed in”

try to backtest with more historical days like 15 days and also place both buy and sell scripts in columns

Good Morning Sir,
I will check in evening but I am not understood, place both buy and sell scripts in columns ?
Can i see chart on kite of particular stock/commodity?

place buy script in buy column and sell script in sell column, yes you can see charts on kite

hello sir
same error coming please give me your contact number that i can contact you or please take team viewer
its urgent

yes it can not be crossover for the stocks above 100 price, verify your condition once again

hello sir,
Above code is not working perfectly… In simple i want …
when 9 days RSI value is grater than 5 days EMA then buy and sell when 9 days RSI value is lower than 5 days EMA…
so above strategy i am using on PI chart then it can be on code tooso please do the needful ASAP