PureBytes Links
Trading Reference Links
|
try this:
TimeFrameSet(inDaily);
C1 = Ref(C,-1) ;
C2 = Ref(C,-2);
C3 = Ref(C,-3);
C4 = Ref(C,-4);
C5 = Ref(C,-5);
CD = C
;
Plot(C, Name() , colorWhite, styleBar);
Filter
= Status("lastbarinrange");
AddColumn(Cd,
"Cd",1.4);
AddColumn(C1,
"C1",1.4);
AddColumn(C2,
"C2",1.4);
//etc.
TimeFrameRestore();
interfool wrote:
I am trying to switch timeframes from a 3 minute to a daily and then back on an exploration. I start off with a 3 minute interval. All I want to do with the daily interval is get the closing values of the last 5 bars. It acts really funny, despite trying different combinations of TimeFrameSet and TimeFrameExpand or Compress.
Shouldn't I just be able to do: (and have C1 thru C5 hold values or CD hold an array of daily values)
TimeFrameSet(inDaily);
C1 = ref(C,-1) ; //grab last 5 closing values on daily interval
C2 = ref(C,-2); //this does not work
C3 = ref(C,-3);
C4 = ref(C,-4);
C5 = ref(C,-5);
//or:
CD = C ; //CD should hold an array of daily values, but it doesn't work either…
TimeFrameRestore(); //to go back to 3 minute interval
It seems to kinda work if I issue a TimeFrameExpand(C,in1minute), but not really. When I run the exploration, the correct values only come up on later in the day iterations of the same stock. I want the last 5 values of the daily interval regardless of how often the stock comes up on the 3 minute interval. Any ideas?
Thanks,
interfool
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|
|