|
allan nathan
2012-10-09 19:58:12
|
|
Hi,
I have been graphing various fundamentals from Morningstar.Excellent!!
Could you tell me how you would chart the following?
I am trying to plot EPS growth vs revenue growth
I am able to do it,but it is not very visually appealing.
Is there a way to get stacked histograms?
eps = GetData('morningstar_fundamentals', 'earnings_per_share_usd', LastData);
rev = GetData('morningstar_fundamentals', 'revenue_usd_mil', LastData);
revgrowth=perf(rev,1);
epsgrowth=perf(eps,1);
plot(eps,"eps",colorred,ChartNone);
plot(epsgrowth,"epsgrowth",colorred,ChartBar,stylenoscale);
Plot(rev, "rev", colorBlack, ChartNone, StyleOwnScale);
plot(revgrowth,"revgrowth",colorblue,ChartLine,StyleNoScale);
Thanks,
Allan
|
|