[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-04 Thread Mike
Here's one way to do it. Substitute your own definition of trend. Fast = MA(Close, 5); Medium = MA(Close, 25); Slow = MA(Close, 50); Plot(Close, "Price", colorBlack, styleBar); Plot(Fast, "Fast", colorDarkGreen, styleLine); Plot(Medium, "Medium", colorYellow, styleLine); Plot(Slow, "Slow", colorDa

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-05 Thread ford7k
Hi Rv The afl you are referring to is named as TOXIC PATTERN (THERE is another one called co2 toxic pattern-that is different) Sorry I dont have it but I believe many others do have it. The chart space color changes on second green up candle or second red candle down hope this helps ford --- In

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-06 Thread Richard
Hello, I have seen this been implemented using "IIF" in this simple way; BarColors = IIf(RSI( 14)<50, colorRed, colorGeen)); Plot(C, " ", BarColors, styleBar ) ; Regards Richard --- In amibroker@yahoogroups.com, Infinity Home Loans wrote: > > Hi, > I need help on a similar kind of afl. Thoug

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-06 Thread ovtrad...@ymail.com
Ah, thanks for that, I've been wondering if that was possible in AB but haven't gotten around to playing with it yet. ovt --- In amibroker@yahoogroups.com, "Mike" wrote: > > Here's one way to do it. Substitute your own definition of trend. > Fast = MA(Close, 5); > Medium = MA(Close, 25); > Sl

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-08 Thread Mike
ror in the last line stating too many parameters > > subhajit mukherjee > > --- On Sat, 5/6/10, ram vel wrote: > > From: ram vel > Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish > zone and red for bearish > To: amibroker@yahoogroups.com

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-10 Thread Mike
's, then the bar > color should be black. > ThanksMithil > > --- On Tue, 8/6/10, Mike wrote: > > From: Mike > Subject: [amibroker] Re: Request Is there any afl greencolor for bullish > zone and red for bearish > To: amibroker@yahoogroups.com > Date: Tuesday

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-15 Thread infynhome
Hi Mike, I have tried to incorporate the formula as per my definition of a trend. The formula that I am trying to use is as follows: Fast = EMA(High, 5); Medium = EMA(Low, 5); Plot(Close, "Price", colorBlack, styleBar); Plot(Fast, "Fast", colorDarkGreen, styleLine); Plot(Medium, "Medium",

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-15 Thread Mike
Hi, If you want the colors to apply to the price instead of the background, then you have to use them in the Plot for the price. Bars can be made thick simply by including styleThick. Highs = EMA(High, 5); Lows = EMA(Low, 5); UpTrend = C > Highs; DnTrend = C < Lows ; Colors = IIf(UpTrend, colorGre

[amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-16 Thread Mike
; Subject: [amibroker] Re: Request Is there any afl greencolor for bullish > zone and red for bearish > To: amibroker@yahoogroups.com > Date: Wednesday, 16 June, 2010, 12:02 PM > > > > > > > > > > > > > > > > >   &g

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-05 Thread ram vel
Dear Mike Thank you and really appreciate your fast response. real nice of you regards rv --- On Sat, 6/5/10, Mike wrote: From: Mike Subject: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Saturday, June 5, 2010, 1

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-07 Thread subhajit mukherjee
it is giving an error in the last line stating too many parameters subhajit mukherjee --- On Sat, 5/6/10, ram vel wrote: From: ram vel Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Saturday, 5 June

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-09 Thread SANDIP CHAKRABORTY
for bearish it is giving an error in the last line stating too many parameters subhajit mukherjee --- On Sat, 5/6/10, ram vel wrote: From: ram vel Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-09 Thread Infinity Home Loans
price close is between both these EMA's, then the bar color should be black. ThanksMithil --- On Tue, 8/6/10, Mike wrote: From: Mike Subject: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Tuesday, 8 June, 201

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-16 Thread ram vel
Dear Mike Thanks for your afl It is simple but effective stuff. gratefully rv --- On Wed, 6/16/10, Mike wrote: From: Mike Subject: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Wednesday, June 16, 2010, 1:32 AM

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-16 Thread Infinity Home Loans
Thank you so much mike. RegardsInfinity --- On Wed, 16/6/10, Mike wrote: From: Mike Subject: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Wednesday, 16 June, 2010, 12:02 PM

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-16 Thread Infinity Home Loans
. Thanks again. RegardsInfinity --- On Wed, 16/6/10, Mike wrote: From: Mike Subject: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Wednesday, 16 June, 2010, 12:02 PM

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Infinity Home Loans
an we color code it for above and below zero line. > Thanks again. > RegardsInfinity > > --- On Wed, 16/6/10, Mike wrote: > > From: Mike > Subject: [amibroker] Re: Request Is there any afl greencolor for bullish > zone and red for bearish > To: ami

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Prashanth K
r = 6; > > UpTrend = Graph0 > 0; > DnTrend = Graph0 < 0; > > Colors = IIf(UpTrend, colorGreen, IIf(DnTrend, colorRed, colorBlack)); > > The colors are not working. > * > * > *Regards* > *Infinity* > > --- On *Thu, 17/6/10, Mike * wrote: > >

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Infinity Home Loans
manner, if I have a oscillator which is plotted as a histogram... > then can we color code it for above and below zero line. > Thanks again. > RegardsInfinity > > --- On Wed, 16/6/10, Mike wrote: > > From: Mike > Subject: [amibroker] Re: Request Is there any afl greenc

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Prashanth
Plot(Cond1, "RSI", Colors, styleHistogram); Cheers Prashanth - Original Message - From: Infinity Home Loans To: amibroker@yahoogroups.com Sent: Thursday, June 17, 2010 19:29 PM Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bear

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Infinity Home Loans
Thanks Prashanth, I better start learning the AFL language now. RegardsInfinity --- On Thu, 17/6/10, Prashanth wrote: From: Prashanth Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish To: amibroker@yahoogroups.com Date: Thursday, 17 June

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-21 Thread Infinity Home Loans
ge - From: Infinity Home Loans To: amibro...@yahoogrou ps.com Sent: Thursday, June 17, 2010 19:29 PM Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish Hi Prashanth, Thanks for the help. However, I need it in a histogram format rat