BannonMan85
New member
I saw this method on youtube and thought that it was interesting. It counts candles to look for possible pivots in the market using prime numbers. The range or "container" is 60 candles. Within that 60 candles you are looking for highs or lows at candle 3, 11, 17, 29, 41, 47, 53 and 59. the question I have is, is there a way to create a candle counting script for this methods prime numbers that will either chart actual numbers or points at the candles?
One of the other things when watching the videos is that it could be off by one candle before or after the numbered candle. It seems to be looking for a pivot near these prime numbers. The script would have to be adjustable for the time frames because they don't work the same and the best time to start intraday is 10 or 11 EST.
1 min= 1 hour, 2 min = 2 hour, 3 min = 3 hour, 4 min = 4 hour, 5 min = 5 hour, 6 min = 6 hour, 15 min = 2 days, 30 min = 1 week, 1 hour = 2 weeks, 2 hours = month, 1 day = Quarter, 4 days = 1 year
Here is a tradingview script that I found https://www.tradingview.com/script/s8z9ufrr-ATT-FFSJR/ :
One of the other things when watching the videos is that it could be off by one candle before or after the numbered candle. It seems to be looking for a pivot near these prime numbers. The script would have to be adjustable for the time frames because they don't work the same and the best time to start intraday is 10 or 11 EST.
1 min= 1 hour, 2 min = 2 hour, 3 min = 3 hour, 4 min = 4 hour, 5 min = 5 hour, 6 min = 6 hour, 15 min = 2 days, 30 min = 1 week, 1 hour = 2 weeks, 2 hours = month, 1 day = Quarter, 4 days = 1 year
Here is a tradingview script that I found https://www.tradingview.com/script/s8z9ufrr-ATT-FFSJR/ :
Code:
//@version=5
indicator("ATT #FFSJR", overlay=true)
att1 = 3
att2 = 11
att3 = 17
att4 = 29
att5 = 41
att6 = 47
att7 = 53
Last edited: