Stochastic Momentum Index - No Trades!

Hello, a simple code is giving message

Error : Scripts generated no trades

There should be trades. The script is :

Buy:

SET D = SMID(13,25,2,9,EXPONENTIAL,EXPONENTIAL)
SET K = SMIK(13,25,2,9,EXPONENTIAL,EXPONENTIAL)

CROSSOVER (K,D)

Exit Buy

SET D = SMID(13,25,2,9,EXPONENTIAL,EXPONENTIAL)
SET K = SMIK(13,25,2,9,EXPONENTIAL,EXPONENTIAL)

CROSSOVER (D,K)

The below chart is created by me by replacing CROSSOVER (K,D) by CROSSOVER(Close,EMA(close,100)) just to see that my D and K are plotted correctly. They are indeed correctly plotted as shown below. Then whu don't I get any trades with CROSSOVER (D,K) during Backtesting ??


when you are applying manually the stochastic movement is same indicator with %D and %K , if crossover applied through tradescript will give you syntax error, you can drag the %D and %K on each other and check the crossover manually

The same query was asked on Aug 23 also by robinc123 also. You had replied that you are getting Alerts.
But WE are not getting any Backtesting results. I can share my terminal with you … Also, I have used the longest possible timeframes for Backtesting (120 days) with 5 min chart, 1 minute chart, 1 hour chart etc… , but NO TRADES !