PureBytes Links
Trading Reference Links
|
Jerry Thank you. I placed the line of code you recommended and still
nothing appeared on my chart. Only the buy and sell arrows.
Here is the code I ran.
Plot( C, "Close", colorRed, styleBar | styleThick );
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);
Thanks
Wally
--- In amibroker@xxxxxxxxxxxxxxx, "Jerry Gress"
<pleasenospamplease@xxx> wrote:
>
> Hello,
>
> By "price channel" do you mean plot the price of the underline?
>
> If so:
>
> Plot( C, "Close", barcolor, styleBar | styleThick );
>
> Note barcolor is determinded by indicators, just put 'colorgreen'.
>
> Hope this helps,
>
> Jerry Gress
> Stockton, Ca.
>
> Ps. You newbies always back up your stuff!!!
>
> -----Original Message-----
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx]
On Behalf
> Of electricwally77
> Sent: Monday, November 03, 2008 11:57 AM
> To: amibroker@xxxxxxxxxxxxxxx
> 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
>
> *********************************
> Yahoo! Groups Links
>
------------------------------------
**** 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/
|