How write code for MACD,RSI AND VOLUME for intraday

Specify the condition in brief,

the syntax for MACD isĀ 

MACD(Short Cycle, Long Cycle, Signal Periods, MA Type)
MACDSignal(Short Cycle, Long Cycle, Signal Periods, MA Type)

Example

SET A = MACDSignal(13, 26, 9, SIMPLE)
SET B = MACD(13, 26, 9, SIMPLE)
CROSSOVER(A, B) = TRUE

for RSI

RSI(CLOSE, 14)

For Volume

REF(VOLUME, 1)

How to write synatx for volume

Check the above answer updated