PureBytes Links
Trading Reference Links
|
Hi Jose, how is it possible to plot the accData as a line joining the
highest peak of the week (If data is above zero) and lowest tough of the
week (If data is below zero).
I use the following:
{ Plot in own window - daily charts only }
{Data below zero}
If(accData > Ref(accData,-1) AND Ref(accData,-1) <
Ref(accData,-2),Ref(accData,-1),0)
{Data above zero}
If(accData < Ref(accData,-1) AND Ref(accData,-1) >
Ref(accData,-2),Ref(accData,-1),0)
In histogram format, it shows the peak/tough but when in line format, it
shows mulitple spikes instead of a line joining the peak/tough. How is it
possible to plot the accData as a line joining the peaks?
_________________________________________________________________
Find just what you are after with the more precise, more powerful new MSN
Search. http://search.msn.com.my/ Try it now.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Home is just a click away. Make Yahoo! your home page now.
http://us.click.yahoo.com/DHchtC/3FxNAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|