Hi there, I came up with the idea for a Fibonacci Weighted Moving Average, but I need help figuring out the math since I'll have to make it from scratch. Basically, it would work like a weighted moving average but with Fibonacci numbers instead of how the original weighted moving average works. For example, a 6 period weighted moving average would multiply the furthest period by 1, the second furthest by 2, the third furthest by 3 etc. until you get to the most recent period which is multiplied by 6. Then you'd divide the sum of those numbers by the sum of the weights which is 21 (1 + 2 + 3 + 4 + 5 + 6 = 21). I need a formula that would do the same thing but with Fibonacci numbers using only an input of the number of periods you'd like to use. So the furthest period would be multiplied by 1, the second furthest by 2, the third furthest by 3, the fourth furthest by 5, the fifth furthest by 8, etc. based on the number of periods you input. Any help from someone good with math who can come up with a thinkscript formula would be very helpful. Thanks in advance!