TheRumpledOne 6,411 posts msg #74199 - Ignore TheRumpledOne |
5/7/2009 2:17:47 PM
Traders,
Run statistics and forget about all the rest, IMHO.
What you are looking for are stocks that are most likely to make a big move right?
If that's the case, then use statistics to find stocks that move.
The RUN FOREST, RUN filters can be a start or what you use.
|
mystiq 650 posts msg #74378 - Ignore mystiq |
5/14/2009 4:37:58 AM
set{range, high - low}
set{tolerance, range * 0.01}
set{diff, close - open}
set{clop, abs(diff)}
set{v1, count(volume below volume 1 day ago, 1)}
set{v2, count(volume below volume 2 days ago, 1)}
set{v3, count(volume below volume 3 days ago, 1)}
set{v4, count(volume below volume 4 days ago, 1)}
and add column tolerance
and add column clop
and add column v1
and add column v2
and add column v3
and add column v4
range above 1
clop below tolerance
v1 equal 1
average volume(90) above 500000
HOW would you code this doji to appear on a weekly bar..?
|
mystiq 650 posts msg #74379 - Ignore mystiq |
5/14/2009 5:02:08 AM
can anybody debug the below code to show dojis on the prior week on a weekly-chart?
set{HiLoRng, weekly High - weekly Low}
set{ClOpRng, abs(weekly Close minus weekly Open)}
set{ClOp_HiLo_ratio, ClOpRng / HiLoRng}
set{Range, count(HiLoRng is below .05, 1)}
set{Body, count(ClOp_HiLo_ratio is less than .02, 1)}
set{doji, Range * Body}
doji > 0 12 days ago
add column doji
add column HiLoRng
add column ClOp_HiLo_ratio
chart-display weekly
Thx 4 the Help..!
|
chetron 2,817 posts msg #74380 - Ignore chetron |
5/14/2009 6:42:20 AM
THERE IS NOTHING TO DEBUG, IT IS PERFECT....
THAT ONLY LEAVES, UNFORTUNATELY, OPERATOR ERROR............ = )
|
mystiq 650 posts msg #74403 - Ignore mystiq |
5/14/2009 8:27:48 PM
thanks Chet...
do you see the errors in the same code with a twist for "monthly" data on a weekly chart:
set{HiLoRng, Highm - Lowm}
set{ClOpRng, abs(Closem minus Openm)}
set{ClOp_HiLo_ratio, ClOpRng / HiLoRng}
set{Range, count(HiLoRng is below .05, 1)}
set{Body, count(ClOp_HiLo_ratio is less than .02, 1)}
set{doji, Range * Body}
doji > 0 24 days ago
add column doji
add column HiLoRng
add column ClOp_HiLo_ratio
chart-display weekly
set{closem, cma(close,24)
set{openm, cma(open,24)
set{highm, cma(high,24)
set{lowm, cma(low,24)
|
chetron 2,817 posts msg #74404 - Ignore chetron |
5/14/2009 8:41:44 PM
there is no monthly data
this code will never, ever work.
glty
|
chetron 2,817 posts msg #74484 - Ignore chetron modified |
5/17/2009 8:36:12 AM
TRIPLE DOJI............
FROM AVERY'S LOGIC SYSTEM THREAD
|
mystiq 650 posts msg #74491 - Ignore mystiq |
5/17/2009 12:50:12 PM
chetron
modified 5/17/2009 8:36:12 AM
TRIPLE DOJI............
FROM AVERY'S LOGIC SYSTEM THREAD ====>Thx again--->can you code for 4 consecutive weekly STAR dojis 4 weeks ago...my logic is 4 consecutive weekly star dojis equal 1 monthly star doji ?!?
|
chetron 2,817 posts msg #74498 - Ignore chetron modified |
5/17/2009 3:16:05 PM
YOU ARE CLOSE.....
YOU ONLY NEED 1ST AND 4TH WEEKS, 2ND AND 3RD MAY CONTRIBUTE TO YOUR HIGH/LOW WICKS
|
chetron 2,817 posts msg #74499 - Ignore chetron modified |
5/17/2009 6:15:46 PM
ACTUALLY THIS IS ALL YOU NEED.......
BUT ONLY RUN ON THE LAST DAY OF EACH MONTH FOR PSUEDO MONTHLY INFO.....
YOU CAN'T REALLY DO THIS CORRECTLY BECAUSE TRUE MONTHLY INFO IS FROM THE 1ST TO THE LAST DAY OF A MONTH.
|