PureBytes Links
Trading Reference Links
|
If you can find them in a scan you can plot them with the same code.
High_52 = your code to find them; //a True or False array
Plot(C,Name(),colorblack,stylecandle); //a graph to add shapes to
PlotShapes(ShapeStar * High_52,colorBlue,0,C,0);
--
Terry
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On
Behalf Of mo_means_go
Sent: Tuesday, June 27, 2006 16:52
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] How to add Plot Shapes at previous 52 week highs?
I would like to add some type of plot shape to my chart window that
will show all occurances of previous 52 week highs. I know how to
scan for them, but how would I go about getting older highs labeled?
Any ideas?
Thanks,
Mo.
|