skip to main | skip to sidebar
The Novice Bear

Tuesday, February 27, 2007

Picture this


Looks like the higher highs on lower volume couldn't last all that long.


Posted by Paul Stiles at 2/27/2007 06:21:00 PM  

No comments:

Post a Comment

Newer Post Older Post Home
Subscribe to: Post Comments (Atom)

Blogs I Read

  • Novicebear.com
  • The Big Picture
  • Infectious Greed
  • Maoxian
  • Stockbee
  • Chart Swing Trader
  • Feed The Bull
  • CXO Advisory Group
  • Option Trading
  • Crush the Market
  • Market Harmonics
  • Hedge Against Speculation

Feed The Bull

FeedTheBull - Top Stock market and Finance Sites

Financial Links

  • Investors.com
  • TFNN.com
  • Tom O'Brien Show (Real Audio)
  • TheStreet.com
  • DECISION POINT
  • Safe Haven
  • Market Watch
  • Bloomberg
  • TeleChart 2007 Charting Tool
  • Blocks Chart Analysis Software
  • Bar Chart.com
  • Prophet.net
  • ProShares Funds
Blog Information Novice Bear Profile



Join The Novice Bear Community

Locations of visitors to this page

About Me

My photo
Paul Stiles
Chicago, Illinois, United States
View my complete profile

Blog Archive

  • ►  2008 (66)
    • ►  February (23)
    • ►  January (43)
  • ▼  2007 (272)
    • ►  December (19)
    • ►  November (15)
    • ►  October (24)
    • ►  September (32)
    • ►  August (33)
    • ►  July (25)
    • ►  June (27)
    • ►  May (19)
    • ►  April (20)
    • ►  March (22)
    • ▼  February (19)
      • Picture this
      • Bad time for a conference
      • OUCH!
      • Flotek Industries (FTK) Price and Volume Warning!
      • Growing readership
      • The market is strong, but...
      • My CanSlim screen
      • Interesting Paper
      • Electronic Data Systems (EDS)- The perfect cup wit...
      • Bye bye mr. bear
      • Just give up bears!
      • QID trade
      • Chicago Snow
      • My CorVel Corp. (CRVL) call
      • UNC vs Duke
      • I've been watching you Ormat (ORA) and Atheros (ATHR)
      • MEMC Electronic Materials (WFR) and Silicon Motion...
      • Counting Bases
      • Dead Bear
    • ►  January (17)
  • ►  2006 (69)
    • ►  December (8)
    • ►  November (12)
    • ►  October (9)
    • ►  September (12)
    • ►  August (13)
    • ►  July (15)

Affiliations

Visit my profile on FeedTheBull.com

    Blocks.com

    Tradeking


    Free Web Counter

Enter your email address:

Delivered by FeedBurner

 

kswing code


Dim i,j,k,last As Integer
Dim swing As Single = Me.CodeBlock.ParameterValue
Dim curhigh,curlow,swhigh,swlow,lowp,highp As Single
Dim pcswing As Single
Dim highbar, lowbar, chighbar, clowbar As Integer

pcswing = swing/100
For i = 1 To InputCount-1
If i = 1
curhigh = inputlast(0)
curlow = inputlast(0)
End If

If last <> 1

If inputlow(i) < (curhigh-curhigh*pcswing)
last = 1
swhigh=curhigh
highbar = chighbar
curlow = inputlow(i)
clowbar = i
lowp = inputlow(i)
addtooutput(inputdate(chighbar),swhigh)

ElseIf inputhigh(i) > curhigh
curhigh = inputhigh(i)
chighbar = i

End If
End If

If last <> -1
If inputhigh(i) > curlow+(curlow*pcswing)
last = -1
swlow = curlow
curhigh = inputhigh(i)
chighbar = i
addtooutput(inputdate(clowbar),swlow)

ElseIf inputlow(i) < curlow
curlow = inputlow(i)
clowbar = i
End If
End If
Next

TDST Sell Line



Dim j,k As Integer
Dim x As Integer = 0
Dim m As Integer = 0
Dim n As Integer = 0
Dim p As Integer = 0
Dim ar1(50000), ar2(50000) As Integer
Dim Period As Integer = Me.CodeBlock.ParameterValue

For i As Integer = 4 To InputCount-1
Dim CurDate As Date = InputDate(i)
If inputlast(i) > Inputlast(i-4) And InputLast(i-1) > InputLast(i-5) _
And InputLast(i-2) > InputLast(i-6) And InputLast(i-3) > InputLast(i-7) _
And InputLast(i-4) > InputLast(i-8) And InputLast(i-5) > InputLast(i-9) _
And InputLast(i-6) > InputLast(i-10) And InputLast(i-7) > InputLast(i-11) _
And InputLast(i-8) > InputLast(i-12) And InputLast(i-9) < InputLast(i-13)
m = m+1
ar1(i) = m
End If
Next

For j = 4 To InputCount-1
If ar1(j) > 0 And ar1(j) > ar1(j-1)
n = n + 1
ar2(n) = j
End If
Next

addtooutput(inputdate(ar2(n-(Period-1))-8),inputlow(ar2(n-(Period-1))-8))