Page 1 of 1

Hull candles

PostPosted: Tue Aug 13, 2013 8:28 am
by Alexander.Gettinger
This indicator is a ported MQL5 indicator from http://www.mql5.com/en/code/1784.

Formulas:
High[i] = Max(X_H, Open[i-1], Close[i-1]),
Low[i] = Min(X_L, Open[i-1], Close[i-1]),
Open[i] = (Open[i-1]+Close[i-1])/2,
Close[i] = (X_O+X_H+X_L+X_C)/4, where
X_O = 2*MA(Open, Period/2)-MA(Open, Period),
X_H = 2*MA(High, Period/2)-MA(High, Period),
X_L = 2*MA(Low, Period/2)-MA(Low, Period),
X_C = 2*MA(Close, Period/2)-MA(Close, Period).

Hull_Candles.PNG


Download:
Hull_Candles.lua
(4.44 KiB) Downloaded 1057 times

Hull_Candles with Alert.lua
(14.83 KiB) Downloaded 605 times

For this indicator must be installed Averages indicator (viewtopic.php?f=17&t=2430).

Re: Hull candles

PostPosted: Sun Jun 04, 2017 5:43 am
by Apprentice
The indicator was revised and updated.

Re: Hull candles

PostPosted: Wed Aug 16, 2017 10:19 am
by Recursive Trendline
Hi Apprentice,

Need a hull candle alert similar to Heikin Ashi Alert here:
viewtopic.php?f=17&t=18230&hilit=heikin+ashi+alert

Up and Down arrows on live/end of turn.

Regards,
Recursive

Re: Hull candles

PostPosted: Thu Aug 17, 2017 5:33 am
by Apprentice
Hull_Candles with Alert.lua added.

Re: Hull candles

PostPosted: Thu Aug 17, 2017 9:23 am
by Recursive Trendline
Thanks a lot Apprentice :)

Re: Hull candles

PostPosted: Wed Sep 12, 2018 6:06 am
by Apprentice
The indicator was revised and updated.