PureBytes Links
Trading Reference Links
|
Oscar, you must take extreme care not to burn your fingers on short
candlesticks... :)
==================
Price every x bars
==================
---8<-------------
{ Plot indicator on price window }
NthCount:=Input("plot Price every x bars",
1,252,7);
x:=Input("use Open=1 High=2 Low=3 Close=4 Volume=5 P=6",1,6,4);
x:=If(x=1,O,If(x=2,H,If(x=3,L,If(x=5,V,If(x=6,P,C)))));
NthBar:=Cum(1)/NthCount=Int(Cum(1)/NthCount);
NthPrice:=ValueWhen(1,NthBar,x);
NthPrice
---8<-------------
jose '-)
--- In equismetastock@xxxxxxxxxxxxxxx, "moscarfx" <moscar.1@xxxx>
wrote:
> Hi, I'm looking info on how can I plot closes, or candlestick for 7
> minutes on a minute chart.
>
> Thank you.
>
> Oscar
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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/
|