Candle rand code

Hi Team,

Please code me for my strategy and this is for 10 min candle chart
range = High – low (0.05 to 0.90 not more then 0.90)
buy= High of the candle +0.05
sell = Low of the cladle - 0.05
Buy Exit(target) = buy + 1
Sell exit(target) = sell – 1
Buy SL = low - 0.05
sell SL = high + 0.05

TRADESCRIPT CODE FOR ZERODHA PI SCANNER BUY:

LAST > (REF(HIGH,1) + .05)

TRADESCRIPT CODE FOR ZERODHA PI SCANNER SELL:

LAST < (REF(LOW,1) - .05)

sir,

it is half script you read all detail what i want. it is possible?