Is it possible to produce candlestick charts in the Numbers app?
Is it possible to produce candlestick charts in the Numbers app?
Is it possible to produce candlestick charts in the Numbers app?
With enough effort it can be done
G2 =IF(C2≥B2, IF(C2−B2≤0.01,B2−0.005,B2),0)
H2 =IF(C2≥B2,IF(C2−B2≤0.01,0.01,C2−B2),0)
I2 =IF(B2>C2,IF(B2−C2≤0.01,C2−0.005,C),0)
J2 =IF(B2>C2,IF(B2−C2≤0.01,0.01,B2−C2),0)
K2 =IF(B2<=C2,B2−D2,0)
L2 =IF(B2<=C2,E2−C2,0)
M2 =IF(B2>C2,C2−D2,0)
N2 =IF(B2>C2,E2−B2,0)
Fill down with all to complete the columns
G-J are the four series for a stacked column chart
K-M are for error bars for the daily high and low lines
I hope I got everything in there.
With enough effort it can be done
G2 =IF(C2≥B2, IF(C2−B2≤0.01,B2−0.005,B2),0)
H2 =IF(C2≥B2,IF(C2−B2≤0.01,0.01,C2−B2),0)
I2 =IF(B2>C2,IF(B2−C2≤0.01,C2−0.005,C),0)
J2 =IF(B2>C2,IF(B2−C2≤0.01,0.01,B2−C2),0)
K2 =IF(B2<=C2,B2−D2,0)
L2 =IF(B2<=C2,E2−C2,0)
M2 =IF(B2>C2,C2−D2,0)
N2 =IF(B2>C2,E2−B2,0)
Fill down with all to complete the columns
G-J are the four series for a stacked column chart
K-M are for error bars for the daily high and low lines
I hope I got everything in there.
I was able to follow Badunit's instructions for his ingenious solution.
Here's a way to make an avg-high-low chart if your needs are simpler:
SG
Is it possible to produce candlestick charts in the Numbers app?