PureBytes Links
Trading Reference Links
|
Hello,
When mixing SetForeign with time frame functions you have to
make sure that you call SetForeign BEFORE calling TimeFrameSet.
Also note that RestorePriceArrays / TimeFrameRestore
restores BOTH time frame AND current symbol as explained in the guide:
http://www.amibroker.com/guide/afl/afl_view.php?name=restorepricearrays
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "ckinsey2003" <ckinsey2003@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Friday, January 14, 2005 9:12 PM
Subject: [amibroker] Puzzelment - RSI of "Foreign" within TimeFrameSet ?
>
>
> 1st, thanks to the response of how to RSI a "Foreign" ticker.
> However,
> When I set the TimeFrame to weekly it all fall's apart for me.
> After setting up this simple test (code below) I don't know what to
> think.
> I must be in error somewhere. Please test the code if one has time &
> get me straight.
> 1. Viewing the ^SPX in Daily mode. (for any other symbol - change the
> SetForeign to match)
> 2. I would expect the following code to produce 2 exact Plots. It does
> not.
> Is it because I am doing a SetForeign on the Symbol being viewed ?
>
> Thanks, Jack
>
> _SECTION_BEGIN("RSI_SPtest");
> TimeFrameSet(inWeekly);
> /* Simple RSI of current symbol (^SPX) in Weekly TimeFrame */
> wRSI = RSI(8);
> /* SetForeign to ^SPX - Still same Time Frame */
> SetForeign("^SPX");
> SetFrgnRSI= RSI(8);
> RestorePriceArrays();
> TimeFrameRestore();
> /* TimeExpand each of the above RSI's for Plot*/
> TXwRSI = TimeFrameExpand(wRSI, inWeekly);
> TXSetFrgnRSI = TimeFrameExpand(SetFrgnRSI, inWeekly);
> /* PLOT each of the Expanded RSIs */
> Plot(TXwRSI , "wRSI", colorBlack, styleLine);
> Plot(TXSetFrgnRSI, "SetFrgnRSI", colorWhite, styleLine);
> _SECTION_END();
>
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|