I'm trying to find symmetry and amplitude ratios at least of 61% each of them for the Fibonacci ratios for a specific pivot point.
Let's said that y[6]
it is the middle of the data and the highest point of the series. I don't know how to calculate if the values are symmetrical or not in high (y) and length (x). Any help would be appreciated.
Basically What it is the percentage of symmetry compared to the right side split-ted by the highest point of the series against the left side
import matplotlib.pyplot as plt
from scipy import interpolate
import numpy as np
y= [10.5,10,12,13,10,11,16,10,9,13,10]
x= np.linspace(1, len(y), len(y), endpoint=True)
fig, ax = plt.subplots(figsize=(8, 6))
ax.plot(x, y, color='red', label= 'Find Symmetry')