PureBytes Links
Trading Reference Links
|
Interesting and timely! I found the following AB formula covering this
subject:(This formula Involves the Fed Rate and Libor.)
Where would one get the Libor data. I find that ^IRX (Yahoo symbol is
for the 13 week Tres Bill. How would one identify "Foreign( "H15_FF_O"
in the formula?
"FedFund = Foreign( "H15_FF_O","C" );
Plot(FedFund,"FED Fund Rate",colorBlue, styleLine);
Libor1 = Foreign( "H15_ED_M1","C" );
Plot(Libor1,"Libor 1 Month",colorRed, styleLine);
PerLin = Param("Lineair Regr.", 15, 2, 200, 1, 10 );
Plot( LinearReg( Libor1-FedFund, PerLin ), _DEFAULT_NAME(), ParamColor
( "Color Lineair Regr.", colorCycle ), ParamStyle("Style"));
function HullMaFunction( P, Periods, Delay )
{
X = 2 * WMA(P,round(Periods/2)) - WMA(P,Periods);
HullMA = WMA(X,round(sqrt(Periods)));
HullMA = Ref(HullMA,-Delay);
return HullMa;
}
PerHull = Param("Hull MA", 15, 2, 200, 0.2, 10 );
Delay = Param("Delay", 0, -100, 100, 1 );
HullMA = HullMaFunction( Libor1-FedFund, PerHull, Delay );
Plot( HullMA, "Hull Moving Average (2LR)", ParamColor( "Color Hull
MA", colorCycle ),ParamStyle("Style") );"
Dick H
--- In amibroker@xxxxxxxxxxxxxxx, "Tim" <raven4ns@xxx> wrote:
>
> That is correct TJ. Here is some additional discussion on the TED
> spread.
> http://events.startcast.com/events/199/B0002/code/eventframe.asp . Mr.
> Coxe is the Global Portfolio strategist for Bank of Montreal Financial
> Group. He gives more background on the TED and it's implications.
>
> Best regards,
>
> Tim
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|