PureBytes Links
Trading Reference Links
|
Think I found this on the AFL site. Change colours etc to suit. As for for LR's 3/10 I
think that is same as Chick Goslin's 3/10 which is a MACD 3/10/16. I think she uses a
3/10/18 for exits.
cheers
///////////////////////////////
// CCI Woodies Style - Coded by Wring
// Amibroker 4.63.1
///////////////////////////////
//
// Note: Set Custom Scaling in dialog just below this dialogue box
// to Min -350, Max +350
//
// Set Background color to DarkOliveGreen
// Set Axes color to white
//
///////////////////////////////
px = Param("px",14,6,55,1);
z = CCI(px);
LSMA = LinearReg(C, 25 );
EMA34 = EMA(C,34);
Title = Interval(2) + " " + Name() + ", " + EncodeColor(colorOrange) +
"CCI 14=" + round(z) + ", " + EncodeColor(colorLightBlue) +
"CCI 6=" + round(CCI(6)) + EncodeColor(colorPink) +
"\nPrice=" + H + ", " + L + ", " + C +
EncodeColor(colorWhite) + " " + Date();
// Colour the bars for Woodies Trend Following
Plusbars = BarsSince(z < 0);
Minusbars = BarsSince(z > 0);
TrendBarCount = 5;
for( i = 0; i < BarCount; i++ )
{
if (Plusbars[i] >= TrendBarCount)
Color[i] = colorGreen;
else
if (Minusbars[i] >= TrendBarCount)
Color[i] = colorRed;
else
Color[i] = colorBlack;
}
// CCI Histogram
Plot(z,"",Color,styleHistogram | styleNoLabel);
// CCI Line
Plot(z,"CCI 14",colorWhite,styleLine | styleNoLabel | styleThick);
// Turbo CCI
Plot(CCI(6),"CCI 6",colorLightBlue,styleLine | styleNoLabel);
// zero line 25lsma
Plot(0,"",IIf(C > LSMA,colorGreen,IIf(C<LSMA,colorRed,colorBlack)),
styleThick | styleNoLabel);
// Print the price label - Note div by 1000 to position price near 0 line
Plot(Prec(C / 1000,3),"",
IIf(C >=Ref(C,-1),colorGreen,colorRed),styleNoLine);
// Set up color for the 100s, green if 34ema above red if below
Color = IIf(C>EMA34,colorGreen,
IIf(C==EMA34,colorBlack,colorRed));
// Plot the 100s
Plot(100,"",Color,styleDots |styleNoLine | styleNoLabel | styleThick);
Plot(-100,"",Color,styleDots |styleNoLine | styleNoLabel | styleThick);
// Plot the 50s
PlotGrid(50,colorTeal);
PlotGrid(-50, colorTeal);
// Plot the 200s
PlotGrid(200,colorTeal);
PlotGrid(-200,colorTeal);
// Plot the 300s
PlotGrid(-300,colorTeal);
PlotGrid(300,colorTeal);
//=======================
----- Original Message -----
From: Natasha M S
To: amibroker@xxxxxxxxxxxxxxx
Sent: Sunday, January 23, 2005 5:14 PM
Subject: [trading] RE: [amibroker] reference :Trading System !
Hi,
This is about the woodies-cci trading system.Does anyone use this system entirely for his
trading activity and do we have it in our Amibroker archieves?Has someone coded it in toto
. I made a feeble attempt but getting it all totally is beyond my current
capabilities.Also how effective is it.Any feed back on all aspects of the above will be
most appreciated.
The other is Linda Rashke's 3/10 Oscillator.mentioned in her book "Street-Smarts"I haven't
managed to get hold of her book. Any info on the same or pointer to any website holding
material for the same would be nice.The code if anyone would oblige would be most
appreciated.
Thanks.
Warm regards,
Natasha !
Do you Yahoo!?
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
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 the Yahoo! Terms of Service.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/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/
|