[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Tomasz - Suggestion



PureBytes Links

Trading Reference Links

you can make this without any improvement.
There is a function: "inwatchlist", show below

INWATCHLIST 
SYNTAX inwatchlist( listno )

RETURNS NUMBER

FUNCTION Checks if the stock belongs to a watch list number
listno. If yes - the function returns 1 otherwise 0.	
EXAMPLE	Filter= InWatchList( 3 ) OR InWatchList( 5 );	


Than you can run one scan for all tickers. 

Here is the formula and a snapshot attached.
The formula is for EOD, but i think it should be very similar to RT.

Thomas


/*CCI(20) BULL-BEAR*/

N100 = InWatchList(0); PhilInternet = InWatchList(1); AmexBiotech =
InWatchList(2);

//Watchlist 0: Nasdaq 100

AddToComposite(IIf(CCI(20)>0 AND N100,1,0),"~CCI(20)W(0)","V",1);

AddToComposite(IIf(CCI(20)<=0 AND N100,1,0),"~CCI(20)W(0)","I",1);

AddToComposite(N100,"~CCI(20)W(0)","C",1);

//Watchlist 1: Phil.Internet

AddToComposite(IIf(CCI(20)>0 AND
PhilInternet,1,0),"~CCI(20)W(1)","V",1);

AddToComposite(IIf(CCI(20)<=0 AND
PhilInternet,1,0),"~CCI(20)W(1)","I",1);

AddToComposite(AmexBiotech,"~CCI(20)W(1)","C",1);

//Watchlist 2: Amex Biotech

AddToComposite(IIf(CCI(20)>0 AND AmexBiotech,1,0),"~CCI(20)W(2)","V",1);

AddToComposite(IIf(CCI(20)<=0 AND
AmexBiotech,1,0),"~CCI(20)W(2)","I",1);

AddToComposite(AmexBiotech,"~CCI(20)W(2)","C",1);

Buy=0;

//indicator - take it muliple times and modify it!

bull= Foreign("~CCI(20)W(0)","V");

bear= Foreign("~CCI(20)W(0)","I");

Tickers = Foreign("~CCI(20)W(0)","C");

Bulls = 100*bull/(bull+bear);

Bears = 100*bear/(bull+bear);

Plot(Bulls,"Bulls",colorGreen,1);

Plot(Bears,"Bears",4,1);

Title="CCI(20) Composite Market Analysis for Nasdaq100 Sum of
Tickers:"+WriteVal(Tickers,1.0)+" "+ EncodeColor( colorGreen)+ "
bullish: "+WriteVal(Bull,1)+"% "+EncodeColor(colorRed)+"bearish:
"+WriteVal(Bear,1)+"% ";











-----Original Message-----
From: akaloustian [mailto:ara1@x...] 
Sent: Montag, 21. Oktober 2002 18:50
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Tomasz - Suggestion


I usually make my suggestions directly to Tomasz, but I thought this 
forum would give every one an opportunity to add their comments...

I am finding the copmposite CCI bu ll/bear pressure indicator usefull 
for Real Time especially when used with $TICK.

The limitation now is that we can run only one scan at a time.

Would suggest to have a way of running the index as selected by code, 
thus having the ability to run multiple indicators simultaneously.

Example:
Watchlist = $BTK;
ATC routine
Plot(ATC...)

Watchlist = $SOX;
ATC routine
Plot(ATC...)

etc

Ara





Yahoo! Groups Sponsor	

ADVERTISEMENT

<http://rd.yahoo.com/M=219695.2310151.3725769.1980433/D=egroupweb/S=1705
632198:HM/A=1226184/R=0/*http://ad.doubleclick.net/jump/N879.ameritrade.
yahoo/B1054521.11;sz=300x250;adc=ZHS;ord=1035218976?> 

<http://us.adserver.yahoo.com/l?M=219695.2310151.3725769.1980433/D=egrou
pmail/S=:HM/A=1226184/rand=603841491> 

Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)

Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html 

Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
<http://docs.yahoo.com/info/terms/> . 



------=_NextPart_001_0029_01C2793D.B420F560
Content-Type: text/html;
charset="US-ASCII"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; charset=3Dus-ascii"=
>
<TITLE>Message</TITLE>

<META content=3D"MSHTML 6.00.2800.1106" name=3DGENERATOR></HEAD>
<BODY>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>Hello=20
Ara,</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>you=20
can make this without any improvement.</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>There=20
is a function: "inwatchlist", show below</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002><B><FONT style=3D"BACKGROUND-COLOR: #316ac5"=20
color=3D#ffffff></FONT></B></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002><B><FONT style=3D"BACKGROUND-COLOR: #316ac5"=20
color=3D#ffffff>INWATCHLIST</FONT></B> </DIV>
<DIV>
<TABLE width=3D"90%" bgColor=3D#c0c0c0 border=3D0>
<TBODY>
<TR>
<TD width=3D"20%">SYNTAX </TD>
<TD width=3D"80%"><FONT style=3D"BACKGROUND-COLOR: #316ac5"=20
color=3D#ffffff>inwatchlist</FONT>( listno )<BR></TD></TR>
<TR>
<TD>RETURNS </TD>
<TD bgColor=3D#c0c0c0>NUMBER<BR></TD></TR>
<TR>
<TD vAlign=3Dtop>FUNCTION </TD>
<TD width=3D"80%">Checks if the stock belongs to a watch list number=20
<I>listno</I>. If yes - the function returns 1 otherwise 0.</TD></TR>
<TR>
<TD vAlign=3Dtop>EXAMPLE</TD>
<TD vAlign=3Dtop>Filter=3D <FONT style=3D"BACKGROUND-COLOR: #316ac5"=20
color=3D#ffffff>InWatchList</FONT>( 3 ) OR <FONT=20
style=3D"BACKGROUND-COLOR: #316ac5" color=3D#ffffff>InWatchList</FONT=
>( 5=20
);</TD></TR></TBODY></TABLE></SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>Than=20
you can run one scan for all tickers. </SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>Here=20
is the formula and a snapshot attached.</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002>The=20
formula is for EOD, but i think it should be very similar to=20
RT.</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002>Thomas</SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN class=3D491120817-21=
102002><FONT=20
color=3D#008000 size=3D3>
<P>/*CCI(20) BULL-BEAR*/</P></FONT>
<P><FONT size=3D3>N100 =3D <FONT color=3D#0000ff>InWatchList</FONT>(<FONT=20
color=3D#ff00ff>0</FONT>); PhilInternet =3D <FONT=20
color=3D#0000ff>InWatchList</FONT>(<FONT color=3D#ff00ff>1</FONT>); AmexBio=
tech =3D=20
<FONT color=3D#0000ff>InWatchList</FONT>(<FONT=20
color=3D#ff00ff>2</FONT>);</FONT></P><FONT face=3D"Courier New"></FONT><FON=
T=20
face=3D"Courier New" color=3D#008000 size=3D3>
<P>//Watchlist 0: Nasdaq 100</P></FONT><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&gt;</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D#00=
0000>=20
<B>AND</B> N100,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>0</FONT><FONT=20
color=3D#000000>),</FONT><FONT color=3D#ff00ff>"~CCI(20)W(0)"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"V"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&lt;=3D</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D=
#000000>=20
<B>AND</B> N100,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>0</FONT><FONT=20
color=3D#000000>),</FONT><FONT color=3D#ff00ff>"~CCI(20)W(0)"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"I"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(N100,</FONT><FONT color=3D#ff00ff>"~CCI(20)</FONT><FONT=20
face=3D"Courier New" color=3D#ff00ff>W</FONT><FONT color=3D#ff00ff>(0)"</FO=
NT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"C"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#008000>
<P><FONT size=3D3>//Watchlist </FONT></FONT><FONT size=3D3><FONT face=3D"Co=
urier New"=20
color=3D#008000>1</FONT><FONT color=3D#008000>: Phil.Internet</P></FONT></F=
ONT><FONT=20
color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&gt;</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D#00=
0000>=20
<B>AND</B> <FONT face=3D"Courier New">PhilInternet</FONT>,</FONT><FONT=20
color=3D#ff00ff>1</FONT><FONT color=3D#000000>,</FONT><FONT=20
color=3D#ff00ff>0</FONT><FONT color=3D#000000>),</FONT><FONT=20
color=3D#ff00ff>"~CCI(20)W(</FONT><FONT face=3D"Courier New"=20
color=3D#ff00ff>1</FONT><FONT color=3D#ff00ff>)"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"V"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&lt;=3D</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D=
#000000>=20
<B>AND</B> PhilInternet,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>0</FONT><FONT=20
color=3D#000000>),</FONT><FONT color=3D#ff00ff>"~CCI(20)W(</FONT><FONT=20
face=3D"Courier New" color=3D#ff00ff>1</FONT><FONT color=3D#ff00ff>)"</FONT=
><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"I"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(AmexBiotech,</FONT><FONT color=3D#ff00ff>"~CCI(20)W(</FONT=
><FONT=20
face=3D"Courier New" color=3D#ff00ff>1</FONT><FONT color=3D#ff00ff>)"</FONT=
><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"C"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#008000 size=3D3>
<P>//Watchlist 2: Amex Biotech</P></FONT><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&gt;</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D#00=
0000>=20
<B>AND</B> AmexBiotech,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>0</FONT><FONT=20
color=3D#000000>),</FONT><FONT color=3D#ff00ff>"~CCI(20)W(2)"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"V"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>IIf</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#0000ff>CCI</FONT><FONT=20
color=3D#000000>(</FONT><FONT color=3D#ff00ff>20</FONT><FONT=20
color=3D#000000>)&lt;=3D</FONT><FONT color=3D#ff00ff>0</FONT><FONT color=3D=
#000000>=20
<B>AND</B> AmexBiotech,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>0</FONT><FONT=20
color=3D#000000>),</FONT><FONT color=3D#ff00ff>"~CCI(20)W(2)"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"I"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>AddToComposite</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(AmexBiotech,</FONT><FONT color=3D#ff00ff>"~CCI(20)W(</FONT=
><FONT=20
face=3D"Courier New" color=3D#ff00ff>2</FONT><FONT color=3D#ff00ff>)"</FONT=
><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>"C"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><B>
<P><FONT size=3D3>Buy</FONT></B><FONT size=3D3>=3D<FONT=20
color=3D#ff00ff>0</FONT>;</FONT></P><FONT color=3D#008000 size=3D3>
<P>//indicator - take it muliple times and modify it!</P></FONT>
<P><FONT size=3D3>bull=3D <FONT color=3D#0000ff>Foreign</FONT>(<FONT=20
color=3D#ff00ff>"~CCI(20)W</FONT><FONT face=3D"Courier New"=20
color=3D#ff00ff>(</FONT><FONT color=3D#ff00ff>0)"</FONT>,<FONT=20
color=3D#ff00ff>"V"</FONT>);</FONT></P>
<P><FONT size=3D3>bear=3D <FONT color=3D#0000ff>Foreign</FONT>(<FONT=20
color=3D#ff00ff>"~CCI(20)W(0)"</FONT>,<FONT color=3D#ff00ff>"I"</FONT>);</F=
ONT></P>
<P><FONT size=3D3>Tickers =3D <FONT color=3D#0000ff>Foreign</FONT>(<FONT=20
color=3D#ff00ff>"~CCI(20)W(0)"</FONT>,<FONT color=3D#ff00ff>"C"</FONT>);</F=
ONT></P>
<P><FONT size=3D3>Bulls =3D <FONT=20
color=3D#ff00ff>100</FONT>*bull/(bull+bear);</FONT></P>
<P><FONT size=3D3>Bears =3D <FONT=20
color=3D#ff00ff>100</FONT>*bear/(bull+bear);</FONT></P><FONT color=3D#0000f=
f>
<P><FONT size=3D3>Plot</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(Bulls,</FONT><FONT color=3D#ff00ff>"Bulls"</FONT><FONT=20
color=3D#000000>,<B>colorGreen</B>,</FONT><FONT color=3D#ff00ff>1</FONT><FO=
NT=20
color=3D#000000>);</FONT></FONT></P><FONT color=3D#0000ff>
<P><FONT size=3D3>Plot</FONT></FONT><FONT size=3D3><FONT=20
color=3D#000000>(Bears,</FONT><FONT color=3D#ff00ff>"Bears"</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>4</FONT><FONT=20
color=3D#000000>,</FONT><FONT color=3D#ff00ff>1</FONT><FONT=20
color=3D#000000>);</FONT></FONT></P><B>
<P><FONT size=3D3>Title</FONT></B><FONT size=3D3>=3D<FONT color=3D#ff00ff>"=
CCI(20)=20
Composite Market Analysis for Nasdaq100 Sum of Tickers:"</FONT>+<FONT=20
color=3D#0000ff>WriteVal</FONT>(Tickers,<FONT color=3D#ff00ff>1.0</FONT>)+<=
FONT=20
color=3D#ff00ff>" "</FONT>+ <FONT color=3D#0000ff>EncodeColor</FONT>(=20
<B>colorGreen</B>)+ <FONT color=3D#ff00ff>" bullish: "</FONT>+<FONT=20
color=3D#0000ff>WriteVal</FONT>(Bull,<FONT color=3D#ff00ff>1</FONT>)+<FONT=
=20
color=3D#ff00ff>"% "</FONT>+<FONT=20
color=3D#0000ff>EncodeColor</FONT>(<B>colorRed</B>)+<FONT color=3D#ff00ff>"=
bearish:=20
"</FONT>+<FONT color=3D#0000ff>WriteVal</FONT>(Bear,<FONT=20
color=3D#ff00ff>1</FONT>)+<FONT color=3D#ff00ff>"% "</FONT>;</FONT></P>
<P><FONT size=3D3></FONT></P>
<P><FONT size=3D3></FONT></P><FONT size=3D1>
<P></P></FONT></SPAN></FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><SPAN=20
class=3D491120817-21102002></SPAN></FONT>&nbsp;</DIV>
<BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px">
<DIV></DIV>
<DIV class=3DOutlookMessageHeader lang=3Den-us dir=3Dltr align=3Dleft><FO=
NT=20
face=3DTahoma size=3D2>-----Original Message-----<BR><B>From:</B> akalous=
tian=20
[mailto:ara1@x...] <BR><B>Sent:</B> Montag, 21. Oktober 2002=20
18:50<BR><B>To:</B> amibroker@xxxxxxxxxxxxxxx<BR><B>Subject:</B> [amibrok=
er]=20
Tomasz - Suggestion<BR><BR></FONT></DIV><TT>I usually make my suggestions=
=20
directly to Tomasz, but I thought this <BR>forum would give every one an=
=20
opportunity to add their comments...<BR><BR>I am finding the copmposite C=
CI=20
bu<SPAN class=3D491120817-21102002><FONT face=3DArial color=3D#0000ff=20
size=3D2>&nbsp;&nbsp;</FONT></SPAN>ll/bear pressure indicator usefull <BR=
>for=20
Real Time especially when used with $TICK.<BR><BR>The limitation now is t=
hat=20
we can run only one scan at a time.<BR><BR>Would suggest to have a way of=
=20
running the index as selected by code, <BR>thus having the ability to run=
=20
multiple indicators simultaneously.<BR><BR>Example:<BR>Watchlist =3D=20
$BTK;<BR>ATC routine<BR>Plot(ATC...)<BR><BR>Watchlist =3D $SOX;<BR>ATC=20
routine<BR>Plot(ATC...)<BR><BR>etc<BR><BR>Ara<BR><BR><BR><BR></TT><BR><BR=
><TT>Post=20
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx <BR>(Web page=
: <A=20
href=3D"http://groups.yahoo.com/group/amiquote/messages/)">http://groups.=
yahoo.com/group/amiquote/messages/)</A><BR><BR>Check=20
group FAQ at: <A=20
href=3D"http://groups.yahoo.com/group/amibroker/files/groupfaq.html";>http=
://groups.yahoo.com/group/amibroker/files/groupfaq.html</A></TT>=20
<BR><BR><TT>Your use of Yahoo! Groups is subject to the <A=20
href=3D"http://docs.yahoo.com/info/terms/";>Yahoo! Terms of Service</A>.</=
TT>=20
<BR></BLOCKQUOTE></BODY></HTML>

------=_NextPart_001_0029_01C2793D.B420F560--

Attachment:
gif00497.gif

Attachment: Description: "Description: GIF image"