SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Technology Stocks : THQ,Inc. (THQI) -- Ignore unavailable to you. Want to Upgrade?


To: Jeff Bond who wrote (3389)2/23/1998 3:13:00 AM
From: Todd D. Wiener  Read Replies (2) | Respond to of 14266
 
To all-

In contrast to my typical style of INVESTING, I offer a potentially profitable TRADING opportunity. Eidos (EIDSY) is approaching its old high of ~$17, which it set about a year ago. The volume has been increasing, and the TA looks supportive of a breakout. The company should be releasing its quarterly results late this week, and assuming the news is good, the stock will certainly set new all-time highs. As any TA gurus know (even old Fibonacci-;o)-and he's long dead), the older the resistance area/trading range, the greater the subsequent run-up, following the breakout. Check out ERTS' recent action. Any chart-watcher could have anticipated an eventual breakout from its old high of ~$40. When ERTS announced the Tiger Woods deal, the stock shot through to all-time highs, due largely to technical buying (i.e., people wait for a breakout and they buy shares). Unlike ERTS, EIDSY is not even close to being overpriced, so there's plenty of room to run before valuation becomes an issue.

Of course, there's the chance that EIDSY could miss estimates or have bad news, sending the stock lower, and making $17 much stronger as resistance. But this is a speculative trading situation, and it's not nearly as safe as holding THQI on Tuesday night (tee, hee, hee!!!!!!!). Nonetheless, there's an opportunity to make some quick $$$ and the possibility that EIDSY will be a good longer-term holding, or even a buyout target for someone (like Cendant Software, perhaps?).

Just my $0.55.

Todd



To: Jeff Bond who wrote (3389)2/23/1998 3:34:00 AM
From: Joe Btfsplk  Respond to of 14266
 
>something I did for my children that has been an absolute winner>

Congrats Jeff. I have a grandson just passing the stage of mostly emitting noxious substances and am working hard on a daughter and son-in-law to follow your lead.

You're doing the right thing.



To: Jeff Bond who wrote (3389)2/23/1998 11:09:00 AM
From: AreWeThereYet  Read Replies (1) | Respond to of 14266
 
Two things ...

1) copy protection on PSX is achieved by checking the invisible console code of the CD to the PSX console. Normally a CDR will not able to copy the console code of the CD so the copied CD will not work. The console code is also used to prevent user playing imported PSX titles from other countries (namely Europe and Asian). Two problems though, first it seems not all publishers utilize Sony's copy protection scheme so some titles can be pirated. Second hackers can always come up with something to "get-around" the protection...the "Mod" chip is designed to cheat the console to believe a genuine title is inserted.

2) for those Fibonacci fans...
func fibonacci(n) integer
if n < 1 then message("error: n must >= 1") endif
if n = 1 then return 1 endif
if n = 2 then return 2 endif
else
return fibonacci(n-1) + fibonacci(n-2)
endif

aC