| 
 PureBytes Links 
Trading Reference Links 
 | 
Thanks - but  I still can't get it to work.
I had a play with layers - but that gave me no joy either.
It seems logical to me that if I display the arrows for buy and sell and
have a price chart on each sheet - the arrows should also be displayed on
the price chart.
Unless I am missing something.
Arthur
I
use the plot shapes and created a new price window 
Plot(C,"Candle
chart",colorBlack,styleBar);
Plot(mymacd,"MACD-OBV",colorGreen,styleLine+styleLeftAxisScale);
Plot(mysignal,"Signal",colorRed,styleLine+styleLeftAxisScale);
PlotShapes(
IIf(
Buy,
shapeUpArrow
,
shapeNone
),
colorGreen,0,Graph0,-50
);
PlotShapes(
IIf(
Sell,
shapeDownArrow 
,
shapeNone
),
colorRed,0,Graph0,-50 
);
 
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: Arthur Sawilejskij
[mailto:arthur@xxxxxxxxxxxxxxx]
Sent: Wednesday, 9 April 2003 6:29 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] trades displayed on price chart
 
When I right click on
the AA window and select show arrows for actual trades - it works
fine.
But when I flick to another chart sheet - and then return - the arrows
are gone. 
Is this right?
Ideally - as I have a price chart on all my chart sheets - I would like
to have the arrows displayed on all the sheets that have a price chart so
that I can flick between them to see how the trades line up with the
various indicators?
is this possible?
Arthur 
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
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Yahoo! Groups Sponsor
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 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
Yahoo! Groups Sponsor
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
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
 
Attachment:
Description: "" 
Attachment:
Description: "" 
 |