[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Show Donchian Channel on Chart



PureBytes Links

Trading Reference Links

drag and drop on to you price chart.

Sent: Tuesday, November 04, 2008 12:57 AM
Subject: [amibroker] Show Donchian Channel on Chart

Hello, I'm trying to show the 30 period donchian channel on my chart.
The code seemed to run okay but I'd like to see the price channel
displayed on my chart. Appreciate the help. The code is listed below.

pds=30;
DonchianUpper =HHV(Ref(H,-1),pds);
DonchianLower = LLV(Ref(L,-1),pds);
DonchianMiddle = (DonchianUpper+DonchianLower)/2;

Plot(DonchianUpper,"DU",colorBlue,styleLine);
Plot(DonchianMiddle,"DM",colorGreen,styleLine);
Plot(DonchianLower,"DL",colorRed,styleLine);

pds=30;
Buy = H > Ref(HHV(H,30),-1);
BuyPrice = Ref(HHV(H,30),-1);
Sell = L < Ref(LLV(L,30),-1);
SellPrice = Ref(LLV(L,30),-1);

Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);

__._,_.___

**** 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

*********************************




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___