logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
KTP2  
#1 Posted : Wednesday, November 12, 2008 4:55:05 PM(UTC)
KTP2

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 2/2/2007(UTC)
Posts: 367

Was thanked: 1 time(s) in 1 post(s)

In my article in this issue, "Coding Candlesticks (II)," I continue with a discussion of my method for quantitatively analyzing candlestick charts, a discussion I began in the November 1999 issue of STOCKS & COMMODITIES with my original article, "Coding Candlesticks". My approach is to assign values to each candlestick, so that candlestick charting will lend itself better to analysis with indicators, pattern recognition, and trading systems.

Here is the code for the CandleWeight indicator I discuss in this month's article.

If(CLOSE=OPEN,1,0) * If(Fml("ushd")>=Fml("lshd"),64,-64)+
If(CLOSE=OPEN,0,1) *
If(CLOSE>OPEN,1,-1) * (If(Fml("body")<=Fml("thBot_b"),80,0)
     +If(Fml("body")>Fml("ThBot_b") AND Fml("body") <=
     Fml(THTop_b"),96,0)+
If(Fml("body")>Fml(ThTop_b"),112,0)) + If(CLOSE>=OPEN,-
4,4)*(If(Fml("Lshd")=0,3,0)+If(Fml("lshd")<fml("ThBot_l") AND
     Fml("lshd")>0,2,0)+
If(Fml("lshd")>Fml("thBot_l") AND Fml("lshd")<=FML("ThTop_l")
     AND Fml("lshd")>0,1,0))+If(CLOSE>=OPEN,1,-1)*(
If(Fml("ushd")>0 AND Fml("ushd")<=Fml("ThBot_u"),4,0)+If(
     Fml("ushd")>Fml("ThBot_u") AND Fml("ushd")<=
     Fml("thTop_u"),8,0)+If(Fml("ushd")>Fml("ThTop_u"),12,0))

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.