| 
 PureBytes Links 
Trading Reference Links 
 | 
Sid,
The only way to print the system with the arrows is using PlotShapes()
function
// YOUR RULES
buy = 
sell = 
Equity(1);
Plot( Close, "Price", colorBlack, styleCandle );
PlotShapes( IIf( Buy, shapeUpArrow ), colorGreen );
PlotShapes( IIf( Sell, shapeDownArrow ), colorRed );
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message ----- 
From: "Sidney Kaiser" <s9kaiser@xxxxxxxxxxx>
To: <AmiBroker@xxxxxxxxxxxxxxx>
Sent: Sunday, February 23, 2003 5:41 PM
Subject: [amibroker] Printing ? TJ
> 2nd try on this ?
> 
> When I try to print a chart that has B/S arrows on it, the arrows do not
> show up on the print out.
> 
> Any hints?
> 
> Sid
> 
> 
> 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 
> 
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
> 
> 
--------------------------------------------------------------------------------
> 
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.455 / Virus Database: 255 - Release Date: 02/13/2003
> 
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 
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
 
 |