PureBytes Links
Trading Reference Links
|
I am trying to extract the HIGH and LOW of the 3-minute bar at 9AM and plot two horizontal lines in 1-minute chart as reference levels. The values should not update until 9AM next day. However, the code below does not work, and the values change as I scroll the charts left and right. Can anyone help?
TimeRangeRef = TimeNum() == 090000;
// Obtain values from 3-minute time frame
TimeFrameSet(in1Minute * 3);
RangeHigh = ValueWhen(TimeRangeRef, H);
RangeLow = ValueWhen(TimeRangeRef, L);
TimeFrameRestore();
// Extract values for use in 1-minute chart
Long_price = TimeFrameExpand(RangeHigh, in1Minute * 3);
Short_price = TimeFrameExpand(RangeLow, in1Minute * 3);
Plot(Long_price, "Long" + _PARAM_VALUES(), ParamColor("Color Long", Colorcycle), ParamStyle("Style"));
Plot(Short_price, "Short" + _PARAM_VALUES(), ParamColor("Color Short", Colorcycle), ParamStyle("Style"));
------------------------------------
**** 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/
|