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.
Strategies & Market Trends : The 56 Point TA; Charts With an Attitude -- Ignore unavailable to you. Want to Upgrade?


To: Doug R who wrote (26719)2/24/1999 11:41:00 AM
From: ivan solotaroff  Read Replies (2) | Respond to of 79302
 
SPNSF

Doug,

It's doing the AKLM HA*-Two Step: A block buy of 100k at 10 1/16, followed by a few track-covering sales that pull the ask down to 10. Today's volume could be a monster Last-Call signal. <<Hint, hint>>

Ivan

HA* -- Hyper-accumulation



To: Doug R who wrote (26719)2/25/1999 4:06:00 AM
From: bdog  Respond to of 79302
 
Doug Reprove, sorry about that... reworked SMI Multiplex with 4,2,3!!

bfixdog

Parity:
SMI Multiplex Combo 13EMA...

F1:view as bars try 5 for a quicker signal
mov(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2),13,e)

SMI Multiplex Combo MACD...

F2:
mov(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2),13,e)-mov(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2),34,e)

F3:view in same pane as F2 with dotted line as signal
mov(f2,89,e)

F4: view in separate pane as bars (histogram)
f2-f3

Dehaan twist:

F1: Raw data...
(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2))

F2: 13 EMA of Raw data... place in same pane as F1 as a dotted signal line
mov(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2),13,e)

F3:TSF 34
TSF(SMI(2, 1, 2)+smi(3,2,1)+smi(4,2,3)+smi(5,3,5)+smi(8,21,13)+smi(13,25,2),34)

F4:13,34,89 Histo.. use bars
(mov(f1,13,e)-mov(f1,34,e))-mov((mov(f1,13,e)-mov(f1,34,e)),89,e)

MetaStock: Note that the formulas allow for user input with default ema's per outline

Window 1:
SMI Multiplex 13EMA...view as bars try 5 for a quicker signal

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("SMI EMA",1,377,13);
Mov(ms,mp1,E)


Window2:
SMI Multiplex MACD...13,34,89

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("Short MA",1,377,13);
mp2:=Input("Long MA",1,377,34);
Mov(ms,mp1 ,E )- Mov(ms,mp2 ,E )

SMI Multiplex MACD Signal...dotted line

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("Short MA",1,377,13);
mp2:=Input("Long MA",1,377,34);
mp3:=Input("Signal MA",1,377,89);
Mov( (Mov(ms ,mp1 ,E )- Mov(ms ,mp2 ,E )),mp3,E)

Window3:
SMI Multiplex Histogram...view as bars

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("Short SMI MA",1,377,13);
mp2:=Input("Long SMI MA",1,377,34);
mp3:=Input("Signal SMI MA",1,377,89);
(Mov(ms,mp1,E)-Mov(ms,mp2,E))-(Mov((Mov(ms,mp1,E)-Mov(ms,mp2,E)),mp3,E))



DeHaan twist:

Window1:
SMI Multiplex Raw data...

(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2))

SMI Multiplex 13EMA...use as dotted line for signal

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("SMI EMA",1,377,13);
Mov(ms,mp1,E)


Window2:
SMI Multiplex 34TSF...add 0 line

mp1:=Input("SMI TSF",1,377,34);
TSF(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2),mp1)

Window3:
SMI Multiplex Histogram...view as bars

ms:=(StochMomentum(2,1,2)+StochMomentum(3,2,1)+StochMomentum(4,2,3)
+StochMomentum(5,3,5)+StochMomentum(8,21,13)+StochMomentum(13,25,2));
mp1:=Input("Short SMI MA",1,377,13);
mp2:=Input("Long SMI MA",1,377,34);
mp3:=Input("Signal SMI MA",1,377,89);
(Mov(ms,mp1,E)-Mov(ms,mp2,E))-(Mov((Mov(ms,mp1,E)-Mov(ms,mp2,E)),mp3,E))