[amibroker] Bar Chart

2010-06-10 Thread Vishvesh
Friends, How can i get bar chart in AB, like MS where UP bar color is different and Down bar color is different. Regards Vishvesh

Re: [amibroker] Bar Chart

2010-06-10 Thread Prashanth
Plot(Close, Close, IIf(CO, colorGreen, colorRed), styleBar ); Cheers Prashanth - Original Message - From: Vishvesh To: amibroker@yahoogroups.com Sent: Thursday, June 10, 2010 21:54 PM Subject: [amibroker] Bar Chart Friends, How can i get bar chart in AB, like MS

Re: [amibroker] Bar Chart Colors

2010-01-28 Thread furinkazaan
-- *From:* NW Trader ta4cha...@comcast.net *To:* amibroker@yahoogroups.com *Sent:* Thu, 28 January, 2010 7:33:51 AM *Subject:* Re: [amibroker] Bar Chart Colors  Hi Joseph, Works for me when I do just what you said you did. What can I say? I don't think it would be a background color

Re: [amibroker] Bar Chart Colors

2010-01-27 Thread reinsley
- *From:* Joseph Occhipinti mailto:joseph_occhipi...@yahoo.com *To:* Amibroker Group mailto:amibroker@yahoogroups.com *Sent:* Tuesday, January 26, 2010 7:26 PM *Subject:* [amibroker] Bar Chart Colors Hi All -- How do I make the up days of a bar chart green and down days red

Re: [amibroker] Bar Chart Colors

2010-01-27 Thread NW Trader
: [amibroker] Bar Chart Colors Thanks Patrick but nothing happened when i put those lines in the formula editor. I did hit 'apply indicator' and no errors came up but when i close the box, nothing came up thanks

Re: [amibroker] Bar Chart Colors

2010-01-27 Thread Joseph Occhipinti
schmuck like myself thanks again From: NW Trader ta4cha...@comcast.net To: amibroker@yahoogroups.com Sent: Thu, 28 January, 2010 7:33:51 AM Subject: Re: [amibroker] Bar Chart Colors  Hi Joseph, Works for me when I do just what you said you did. What can I

[amibroker] Bar Chart Colors

2010-01-26 Thread Joseph Occhipinti
Hi All -- How do I make the up days of a bar chart green and down days red? Thanks __ See what's on at the movies in your area. Find out now: http://au.movies.yahoo.com/session-times/

Re: [amibroker] Bar Chart Colors

2010-01-26 Thread NW Trader
To: Amibroker Group Sent: Tuesday, January 26, 2010 7:26 PM Subject: [amibroker] Bar Chart Colors Hi All -- How do I make the up days of a bar chart green and down days red? Thanks -- See what's

Re: [amibroker] Bar Chart Colors

2010-01-26 Thread Joseph Occhipinti
: Wed, 27 January, 2010 6:19:57 PM Subject: Re: [amibroker] Bar Chart Colors  Hi Joseph, Try the following lines and plot statement in a new formula editor: Barcolor = IIF(CRef(C,-1) , colorGreen, colorRed ); Plot(C, Close , Barcolor , styleBar |styleThick ) ; This colors the bars based

[amibroker] bar chart with plot foreign

2009-03-17 Thread murthysuresh
how can i get a bar chart with plot foreign. i just could not get a bar but just dash dash chart http://screencast.com/t/JDm55Wv1

[amibroker] Bar chart without openprice

2008-09-13 Thread awbe2005
Hello everyone, can anyone post some code to get a bar chart without open price, like this http://stockcharts.com/h-sc/ui?s=GBNp=Dyr=1mn=0dy=0id=p36964279287\ one. Thanks in advance. Best regards, Deviad

RE: [amibroker] Bar chart without openprice

2008-09-13 Thread Thomas Z.
Hi, PlotOHLC(C, H, L, C, O == C Chart, colorBlack, 128); Thomas www.PatternExplorer.com From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of awbe2005 Sent: Saturday, September 13, 2008 12:56 PM To: amibroker@yahoogroups.com Subject: [amibroker] Bar chart without

[amibroker] Bar chart with close only... possbile..?

2008-09-05 Thread sidhartha70
Hi, Is it possible to plot a bar chart where only the range the close is indicated (i.e. not the open)...? TIA

Re: [amibroker] Bar chart with close only... possbile..?

2008-09-05 Thread Dennis Brown
Sidhartha, Use the PlotOHLC() function and plot anything you want for bars. BR, Dennis On Sep 5, 2008, at 11:25 AM, sidhartha70 wrote: Hi, Is it possible to plot a bar chart where only the range the close is indicated (i.e. not the open)...? TIA

Re: [amibroker] Bar chart with close only... possible..?

2008-09-05 Thread Mr. Valley
Plot(Close,Close,5,8); PlotOHLC(H,H,L,C,Range Close Chart,1,128); sidhartha70 wrote: Hi, Is it possible to plot a bar chart where only the range the close is indicated (i.e. not the open)...? TIA

Re: [amibroker] Bar chart with close only... possbile..?

2008-09-05 Thread wavemechanic
SetBarFillColor() controls the bar color (H to L) and Plot() controls the color of the O and C marks. Bill - Original Message - From: Dennis Brown To: amibroker@yahoogroups.com Sent: Friday, September 05, 2008 8:29 PM Subject: Re: [amibroker] Bar chart with close only

Re: [amibroker] Bar chart with close only... possbile..?

2008-09-05 Thread wavemechanic
SetBarFillColor() has to precede Plot() - Original Message - From: wavemechanic To: amibroker@yahoogroups.com Sent: Saturday, September 06, 2008 12:03 AM Subject: Re: [amibroker] Bar chart with close only... possbile..? SetBarFillColor() controls the bar color (H to L

[amibroker] Bar chart help

2006-04-25 Thread Tony Lei
Hi, I am trying to plot this bar chart in the following manner. If the close crosses above the MA, bar is green, otherwise it is black. If close crosses below MA, bar is red, otherwise is black. I am only seeing green bars and not red bars. this is the code: Any help is appreciated, Thanks

Re: [amibroker] Bar chart help

2006-04-25 Thread Mark H
: [amibroker] Bar chart help Hi,I am trying to plot this bar chart in the following manner. If the close crosses above the MA, bar is green, otherwise it is black. If close crosses below MA, bar is red, otherwise is black. I am only seeing green bars and not red bars.this is the code:Any

Re: [amibroker] Bar chart help

2006-04-25 Thread Tony Lei
@yahoogroups.com Sent: Tuesday, April 25, 2006 6:58 PM Subject: [amibroker] Bar chart help Hi,I am trying to plot this bar chart in the following manner. If the close crosses above the MA, bar is green, otherwise it is black. If close crosses below MA, bar is red, otherwise is black. I am

[amibroker] Bar Chart Colors

2006-03-16 Thread garydixon90
Hi, How do you change the bar chart colors in 4.7 so they are the same as candle sticks. ie if c o I want green and the reverse for red. Thanks Gary Yahoo! Groups Sponsor ~-- Try Online Currency Trading with GFT. Free 50K Demo. Trade 24