PureBytes Links
Trading Reference Links
|
Joe
To plot a shape "around" a specific plotted line, use any valid
array name for the yposition.
Here's several I've used in IB.
PlotShapes(IIf(Code ==4,shapeUpArrow,shapeNone),
colorDarkGreen,0,Low);
PlotShapes(IIf(Code == 3,shapeDownArrow,shapeNone),
colorRed,0,High);
PlotShapesIIfCode==4,shapeSmallCircle,shapeNone),
colorBlack,0,AvgEntry,0);
PlotShapesIIfCode==3,shapeSmallCircle,shapeNone),
colorBlack,0,StopLoss,0);
Hope this helps.
Regards,
Tony
--- In amibroker@xxxxxxxxxxxxxxx, "Joe Landry" <jelandry@xxxx> wrote:
> I'm having difficulty associating the plot shapes with the specific
plot lines.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|