Hi Yves,
Your IIF statement is not properly constructed (missing an argument).
Here's the solution -
Plot( 1.5, "Tr-RSI",
IIf(uptrend, colorviolet,IIf(downtrend, colorwhite,colordefault ) )
,
styleOwnScale|styleArea|styleNoLabel|styleNoTitle , -0.5, 100 ) ;
Peace and Justice --- Patrick
----- Original Message -----
Sent: Friday, November 20, 2009 3:01
PM
Subject: [amibroker] 1 Bad color on
2
The formula Below supposed give to me 2 color,
Violet and White
Why I't give to me the Violet and BLACK
??????
Thank
_SECTION_BEGIN("Tr-RSI");
SetChartOptions ( 0, 0,chartGrid30|chartGrid70);
periods = Param( "Periods", 9, 1, 200, 1 );
Ind=RSI(9) ;
Haut=60 ;
Bas=40 ;
Result = 0;
for ( i = 1; i < BarCount;
i++ )
{
prev = result[ i - 1];
result[ i ] = IIf( Ind[ i ] > Haut[ i ]
AND Ind[ i ] > Bas[ i ], 5,
IIf( Ind[ i ] < Bas[ i ], 0, prev ) );
} ;
uptrend= IIf(Result,1,0) ;
downtrend= IIf(Result,1,0) ;
Plot ( 2, /* defines
the height of the ribbon in percent of pane width */"ribbon",
IIf ( uptrend, colorViolet, IIf(
downtrend, colorWhite, 0 )), /* choose color */
styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
_SECTION_END ();
Merci YLTech ( Yves L.
) Le présent message et les documents qui y sont joints sont
réservés exclusivement au destinataire indiqué. Il est strictement interdit
d'en utiliser ou d'en divulguer le contenu. Si vous recevez le présent message
par erreur, veuillez le détruire S.V.P. et nous en aviser immédiatement afin
que nous puissions corriger nos dossiers. Merci. This message and
the attached documents may contain privileged or confidential information that
are intended to the addressee only. Any unauthorized disclosure is strictly
prohibited. If you happen to receive this message by error, please delete it
and notify us immediately so that we may correct our internal records. Thank
you. yltech@xxxxxxxxxxxx
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|