PureBytes Links
Trading Reference Links
|
Hello,
Y-position is expressed in price values, the OFFSET is
in PIXELS, that's why you don't get what you want. Instead use Yposition alone
and set offset to zero:
p = (<FONT
color=#000000>H+<FONT
color=#000000>L+<FONT
color=#000000>C)/<FONT
color=#ff00ff>3;
r1 = (2<FONT
color=#000000>*p)-L<FONT
face="Courier New">; s1 = (<FONT
color=#ff00ff>2*p)-<FONT
color=#000000>H<FONT
color=#000000>; r2 = p +(r1 - s1); s2 = p -(r1 - s1); prevday =
BarIndex() == <FONT
color=#0000ff>LastValue(<FONT
color=#0000ff>BarIndex())-<FONT
color=#ff00ff>1;
PlotShapes( prevday *
shapeSmallCircle
,colorBrightGreen,
0, r1, <FONT
color=#ff00ff>0<FONT
color=#000000> ); <FONT
color=#0000ff>PlotShapes( prevday * <FONT
color=#000000>shapeSmallCircle ,<FONT
color=#000000>colorRed, <FONT
color=#ff00ff>0, s1, <FONT
color=#ff00ff>0 );
PlotShapes( prevday *
shapeSmallCircle
,colorBrightGreen,
0, r2, <FONT
color=#ff00ff>0 );
PlotShapes( prevday *
shapeSmallCircle
,colorRed,
0, s2, <FONT
color=#ff00ff>0 );
Plot( <FONT
color=#000000>C, <FONT
color=#ff00ff>"Price", <FONT
color=#000000>colorBlack, <FONT
color=#000000>styleCandle<FONT
face="Courier New"> );
Hope this helps.
Best regards,Tomasz Janeczkoamibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
<A title=louwcoetzer@xxxxxxxxxxxxx
href="">Louw-Roux Coetzer
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">AmiBroker Forum
Sent: Tuesday, November 11, 2003 3:22
PM
Subject: [amibroker] Drawing on
Yesterday
Hi Graham
Yes it is, thank you very much for responding so
quickly !
I wonder if I can push my luck a little bit
further and as if it would also be possible and how to ... then plot the
pivots for the previous day only...thus not showing the whole pivot graph only
yesterday's thus enabling me to compare today's move with the pivot range
...as I update during the day... i understand they y-position is linked to the
sceen pixels and not to the actual price of anything...thus I am assuming I
would have to use the old Graph method... any help would be greatly
appreciated !
Thanks once more !
Kind regards
Louw Coetzer
South Africa
Please forgive me if this message appears
more than once - had a small problem with setting up the Yahoo part
Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
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.
|