PureBytes Links
Trading Reference Links
|
try
Lowestsince(abv==0,L)
On Thu, 04 Nov 2004 22:49:49 +0100, groups <groups@xxxxxxxxxxxx> wrote:
>
> Hi everyone,
>
> this is something I don't understand. I want to plot two lines: first
> one representing the highest value of the visible bars, second one
> representing the lowest value of the visible bars. simple, isn't it?
> I wrote this:
>
> aBV = Status("barvisible");
>
> Lo = Lowest (L*IIf(aBV,1,L)); // I assume L>=1
> Hi = Highest(H*aBV);
>
> Plot(LastValue(Hi),"",32);
> Plot(C,"",32,64);
> Plot(LastValue(Lo),"",32);
>
> please copy & paste this, and change interval from daily to hourly,
> weekly, intraday etc. do you see the strange scaling? if you do, please
> clarify to me why it does scale so? changing last lines to:
>
> Plot(Hi,"",32);
> Plot(C,"",32,64);
> Plot(Lo,"",32);
>
> works OK for every interval.
>
> I would appreciate any help and explanation of this strange scaling,
> cheers,
> BM
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|