There is a nice relative strength indicator located on the Amibroker website with the name "MultiChart" - no programming necessary (other than entering the symbols you want to compare)
Ed Hoopes --- In [email protected], "C Alvarez" <[EMAIL PROTECTED]> wrote: > > I am trying to compare the current symbol's RelStrength to other > symbols. I have written the code below. The problem I have is that > the second RelStrength call is getting the RelStrength of the > current symbol and not sym2. I have verified that sym2 does exist. > > Am I doing something wrong? Is there a way to do this? > > Thanks, > Cey > > list = CategoryGetSymbols( categoryWatchlist , 4); > rsx = RelStrength("SP-500"); > > for( j = 0; ( sym2 = StrExtract( list, j ) ) != ""; j++ ) > { > SetForeign(sym2); > > rsxT = RelStrength("SP-500"); > _TRACE(sym2 + ":" + rsxT); > > RestorePriceArrays(); > } > Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com 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/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
