TradingView
revanchdg
6 апр 2019 г., 17:11

Fib Divergence System 

Apple Inc.NASDAQ

Описание

Combo of many useful indicators which includes fib lines, time and money channels and divergence buy sell signals

Credits for source code:
Scarf, Lazybear, 100kiwi

Информация о релизе

Added UCS regression curve
Комментарии
fabienben
Thank you !
what means the P ?
thanks
revanchdg
@fabienben, Divergennce
tylerwu
@revanchdg, could you explain it more specific ?
FussyBull
Hello @revanchdg
Congratulations you have done an excellent work, however I have observed that Fibonacci lines are not drawn in timeframes greater than 1 week.
This occurs when the graph has fewer bars than indicated by the len variable (Period = 200 by default).
A fix for this is to enter the following code for Pine Script version 4.

//Fiblines
len = input(title = "Period", type = input.integer, defval =200)

length = len > bar_index + 1 ? bar_index + 1 : len

srcHigh = highest(high, length)
srcLow = lowest(low, length)
diff = srcHigh - srcLow

line0000 = srcLow

For users who do not know how to code, it would be very helpful if you could release a new version with this fix.
One more time, many thanks for your work.
Regards,
avarzamani
Nice work. It is very useful when the support and resistance levels are very distant. When the market is ranging it is pretty hard to get true signals of the code. In every time frame it works. but one should wait for confirmation candle of course. Well done!
ilesanmipepsi
Greeting!

Does this script repaint?
revanchdg
ilesanmipepsi
@revanchdg, Thanks for your reply.
revanchdg
@ilesanmipepsi, But for the divergence buy sell signals you need to wait till the next candle close to confirm signal on previous bar and that's it it doesn't repaint like ha scripts. You can also try Trading System which has fib Bollinger bands
ilesanmipepsi
@revanchdg, Can you recommend anyone please? However, I'm swing trader, I like system that works best on higher time frame.
Ещё