candle eds...

ChartMan

Legendary member
Messages
5,580
Likes
47
I cant post reply so starting fresh. Here's one I did a while agot- it's not very good but you can nick the ideas and play with it!
I'll have a go at the 20 day thing and post it later

Martin.

!select stocks with bigger open and close

lowis if [open]>val([close],1).
hiis if val([high],1)<[high].
cciup if val([CCI],1)<[cci].
svmaup if val([svma],1)<[svma] and [volume]>500.
tciup if val([tci],1)<[tci].
cls if val([close],3)>[close].
vaob if [obv pct]>0 or [va pct]>0.
phup if val([phase],3)<[phase].
buy if lowis and hiis and cciup and tciup and cls and svmaup and vaob and phup.

!exit rules- test for dropping off of CCI or TCI or SVMA or stachastic
! these exits are very fast and may not provide maximum profits if STRICTLY adhered to....
!They WILL protect your losses faster!
CCI if val([CCI],1)>[CCI].
TCI if val([TCI],1)>[TCI].
SVMA if val([SVMA],1)>[SVMA].
STCH if val([stochastic],1)>[stochastic].
sell if CCI or TCI or SVMA or stch.

Well the topic count says they're there , but I cant see them, so its here twice maybe...

[This message has been edited by reality (edited 02-12-2000).]
 
Top