TradingView
RicardoSantos
17 Sep 2015 pukul 20.30

[RS]Fractals V9 

Euro Fx/U.S. DollarFXCM

Huraian

update: added optional option for marking the fractals with bgcolor (request for: faizal.mansor.908)

Nota Keluaran

Update for V5.
Komen
ThorstenKolb
How can I use the script as an alert?
WoodLandSprite
Does this repaint?
FahadWaliany
Would it be possible to know how this script works, i am familiar with Harmonic patterns but it doesnt tell me how its formed?
SOLEKING
Can someone help me how to use this
Cashtagpat
My making making script. Thanks Ricardo. How can i set alerts for when HL LL LH HH is printed on the chart?
earlybirdsignals
@Cashtagpat, Create an Array and put the values in it. After that read the array's last value as an alert.

HHLL_Array = array.new<string>(1, "na")

if higherhigh == true
array.set(id=HHLL_Array, index = 0, value="HH")
if lowerhigh == true
array.set(id=HHLL_Array, index = 0, value="LH")
if higherlow == true
array.set(id=HHLL_Array, index = 0, value="HL")
if lowerlow == true
array.set(id=HHLL_Array, index = 0, value="LL")

Alert Condition will be:
array.get(id=HHLL_Array, index=0) == "HH"
array.get(id=HHLL_Array, index=0) == "HL"
array.get(id=HHLL_Array, index=0) == "LH"
array.get(id=HHLL_Array, index=0) == "LL"
earlybirdsignals
@earlybirdsignals, correction:
var HHLL_Array = array.new<string>(100, "na")

if higherhigh == true
array.insert(HHLL_Array, 0, "HH")
if lowerhigh == true
array.insert(HHLL_Array, 0, "LH")
if higherlow == true
array.insert(HHLL_Array, 0, "HL")
if lowerlow == true
array.insert(HHLL_Array, 0, "LL")
RohanW
I am new to Trading View and really like your script here. Is there a way to change the Fractal point to simply cover three candles and not 5 e.g. middle candle being the highest or lowest? I dont know how to write script so I cant see how to do it . Any help would be great many thanks Rohan
GoldenRatioTA
Hi Ricardo. Thank you for this great script. Can I just ask you what the "Filter Bill Williams Fractals" actually does? Many thanks!
RicardoSantos
@MRZSKV, its just the method to read the fractal regularly its like this (< < extreme > >) and bill williams is like this (< <= extreme => >)
Lebih