PureBytes Links
Trading Reference Links
|
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
<*> 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/
|