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!
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
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,
What a big work. I am a beginner in swing trading, could you please name the indicators you used to determine the lines and buy/sell signals? I would like to add the indicators manually and analyze them by my self.
Comments
what means the P ?
thanks
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,
Does this script repaint?