Please Code the AFL logic in TradeScript

I am using Pi , Can you code the below logic for pi

My amibroker afl code is

Buy=Cross(MACD(),Signal());

Sell=Cross(Signal(), MACD());

How do i use the code in Zerodha Pi


 
BUY:
crossover(MACD(26, 13, 9, EXPONENTIAL) ,MACDSIGNAL(26, 13, 9, EXPONENTIAL))

You can input the values for Long Cycle, Short Cycle, Signal Line and MA Type according to what you select in the Parameter window in Amibroker.

Sell:

crossover(MACDSIGNAL(26, 13, 9, EXPONENTIAL),MACD(26, 13, 9, EXPONENTIAL))

. You can input the values for Long Cycle, Short Cycle, Signal Line and MA Type according to what you select in the Parameter window in Amibroker.

1 Like