Heikin IV (actual closing)

Category: Indicators By: Ichimoku Reading Created: September 21, 2020, 12:45 PM
September 21, 2020, 12:45 PM
Indicators
4 Comments

Hello,
ITF provided :
– “Heikin IV” displayed on the main chart- “Trend Heikin IV” displayed on the secondary graph
Heikin IV uses the same parameters as heikin-ashi, the difference is that the haclose is replaced by the real close
The calculation method for heikin ashi includes haclose, so the calculation is not upset by the real close.
Trend Heikin IV gives you the meaning of the candles to simplify the reading…

Yours sincerely,IV

//
//============================== Indicateur

//Hienkin IV
if barindex>1 then
 haclosex=(open+close+low+high)/4
 haopen=(haopen[1]+haclosex[1])/2
 xHigh = Max(haOpen, haClosex)
 xLow = Min(haOpen, haClosex)
 hahigh = Max(High,xHigh)
 halow = Min(Low,xLow)
endif

//Affichage
drawcandle(haopen,hahigh,halow,close)

return

Download
Filename: Trend-Heikin-IV.itf
Downloads: 232
Download
Filename: Heinkin-IV.itf
Downloads: 259
Ichimoku Reading Master
------------------------------------Participating Encoder-----------------------------------
Author’s Profile

Comments

Logo Logo
Loading...