我正在使用Julia进行财务数据处理,然后根据财务数据绘制图表。
在图表的 X 轴上我在 Y 轴上绘制日期(每天的价格)我在绘制股票价格、MovingAverage13 和 MovingAverage21
我目前正在使用 DataFrames 来绘制数据
代码-
df=DataFrame(x=dates,y1=pricesClose,y2=m13,y3=m21)
l1=layer(x="x",y="y1",Geom.line,Theme(default_color=color("blue")));
l2=layer(x="x",y="y2",Geom.line,Theme(default_color=color("red")));
l3=layer(x="x",y="y3",Geom.line,Theme(default_color=color("green")));
p=plot(df,l1,l2,l3);
draw(PNG("stock.png",6inch,3inch),p)
我正在正确获取图表,但我无法在图表中添加一个图例,显示蓝线是收盘价 红线是移动平均线 13 绿线是移动平均线 21
我们如何在图表中添加图例?