Hi sebastiandanconia, No you are not late to this party. This is the coding party that never ends :-) I'm still enthusiastically perfecting the code to get it to accomplish my task and about to post my results as well. I looked in the "Bands" folder and did not see "Donchian Channel" as you recommended. All I saw in the "Bands" folder was : BollingerBands, Keltner Bands and Percent Bands. Is this what you are referring to? I currently have amibroker ver. 5.20 rc1 installed. Thank you.
--- In [email protected], "sebastiandanconia" <[EMAIL PROTECTED]> wrote: > > I'm late to this party, but if you haven't puzzled this out by now, > the Donchian Channel is listed under the "Bands" (not "Indicators") > part of "Charts" in the recent AB iterations. Just drag-and-drop onto > your chart, adjusting the number of periods as needed using parameters. > > > S. > > --- In [email protected], "MAVIRK" <mvirk67@> wrote: > > > > Please use this. > > > > From: electricwally77 > > Sent: Tuesday, November 04, 2008 2:53 AM > > To: [email protected] > > Subject: [amibroker] Re: Show Donchian Channel on Chart > > > > > > Hello MAVIRK, What exactly should I drag and drop onto my chart > > please? I do not see "Donchian Channel" in the Charts Tab under the " > > indicators" folder. > > > > Thank you for your time.--- In [email protected], "MAVIRK" > > <mvirk67@> wrote: > > > > > > drag and drop on to you price chart. > > > > > > > > > From: electricwally77 > > > Sent: Tuesday, November 04, 2008 12:57 AM > > > To: [email protected] > > > 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); > > > > > >
