Share the code on PSAR Trend on based on 1HOUR candel

Is there anyone who will give me Trend based code of PSAR !!! Hourly chart , as you can see buy and sell signals based of PSAR TREND , so i need the exact alert when the trend is start on PSAR.

Please do not suggest me this code , i have tested which is not matching with my require scenario - Buy -  CROSSOVER(CLOSE, PSAR(0.02, 0.2)) = TRUE

                           SELL- CROSSOVER(PSAR(0.02, 0.2),CLOSE) = TRUE

If you want to check catch the trend you can try with the combination of EMA and PSAR as follows

Buy script:

CROSSOVER(EMA(CLOSE, 20), EMA(CLOSE, 60)) AND CROSSOVER(PSAR(CLOSE, 0.02, 0.2), CLOSE)

Sell Script

CROSSOVER(EMA(CLOSE, 60), EMA(CLOSE, 20)) AND CROSSOVER(CLOSE, PSAR(CLOSE, 0.02, 0.2))

hi geek,

This code is not working and is producing an error.

Can you please test it once?

Hari

hElLO tRaDeR,

Correct codes for PARABOLIC CROSSOVERS:

BUY SCRIPT:

CROSSOVER(CLOSE, PSAR(CLOSE, 0.02, 0.2))

LONG EXIT CODE:

CROSSOVER(PSAR(CLOSE, 0.02, 0.2),CLOSE)

Script generated no trade