Hi,
I need help to convert below Fibonacci signal so I can use it in ProRealTime?
local bars_from_bottom = Low.findLowest(100); local last_bottom = Low[-bars_from_bottom]; local last_top = High.highest(bars_from_bottom-1); local fibo_level = last_bottom + (last_top – last_bottom) * (1.0 – 0.764); plot1[0] = Low[-1] > fibo_level && Low[0] <= fibo_level;
Kind regards
Peter
As an indicator? Do you have a screenshot example of what it should look alike on a chart please?