We do not have Heiken Ashi Candlesticks but as these are calculated from normal bar data there is no reason why you could not calculate them yourself..
HAClose = (Open+Close+Low+Close)/4 #Average price of current bar
HAOpen = (prevbar.open + prevbar.close)/2 #Midpoint of the previous bar
HAHigh = Max[High,HAOpen,HAClose]
HALow = Min[Low,HAOpen,HAClose]
Answers
We do not have Heiken Ashi Candlesticks but as these are calculated from normal bar data there is no reason why you could not calculate them yourself..
HAClose = (Open+Close+Low+Close)/4 #Average price of current bar
HAOpen = (prevbar.open + prevbar.close)/2 #Midpoint of the previous bar
HAHigh = Max[High,HAOpen,HAClose]
HALow = Min[Low,HAOpen,HAClose]