PureBytes Links
Trading Reference Links
|
Bill - I am using 1 minuute data from IQfeed for this example.
Larry
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <fimdot@xxx> wrote:
>
> Are you working with tick data or something else?
>
> Bill
>
> ----- Original Message -----
> From: "onelkm" <LKMCD1@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Saturday, December 08, 2007 8:41 AM
> Subject: [amibroker] using 1 minute data to get pivot on daily
chart - please help
>
>
> >I am trying to pivot from todays price at 9:35 instead of at the
9:30
> > open which is too volitile. I then want to plot the pivot price
on a
> > daily chart. This is what I have so far, but something doesn't
work.
> > The price at 9:35 is empty on the daily chart. Should be easy,
but I've
> > spent hours looking at posts and help files. Could someone give
me some
> > help?
> >
> > Thanks
> > Larry
> >
> > TimeFrameSet(in1Minute);
> > price935=ValueWhen(TimeNum()==093500 ,C,1); // price at
9:35 ..... does
> > not work!
> > TimeFrameRestore();
> >
> > price935xx = TimeFrameExpand(price935,in1Minute,expandFirst);
> > Plot( TimeFrameExpand
> >
(price935,in1Minute,expandFirst),"price935",colorYellow,styleStaircase
);
> >
> > TimeFrameSet(inDaily);
> > Plot(C,"C",colorWhite,styleBar);
> > buy = cross(H,price935xx*1.01);
> > sell = cross(price935xx*.99,L);
> > TimeFrameRestore();
> >
> >
> >
> >
> >
> > Please note that this group is for discussion between users only.
> >
> > To get support from AmiBroker please send an e-mail directly to
> > SUPPORT {at} amibroker.com
> >
> > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> > http://www.amibroker.com/devlog/
> >
> > For other support material please check also:
> > http://www.amibroker.com/support.html
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG Free Edition.
> > Version: 7.5.503 / Virus Database: 269.16.13/1167 - Release Date:
12/3/2007 12:20 PM
> >
> >
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|