chetron 2,817 posts msg #81981 - Ignore chetron |
10/28/2009 9:01:13 PM
HOW TO COLOR CODE YOUR INDICATOR.....
I NEED TO SEE THE MACD HISTOGRAM CLEARER, BUT I WANT TO KNOW IF THE FAST LINE IS ABOVE OR BELOW 0....
|
chetron 2,817 posts msg #82645 - Ignore chetron modified |
11/8/2009 12:40:28 PM
OLDY BUT GOODY.....
THE SHORT SIDE.....
|
johnpaulca 12,036 posts msg #82647 - Ignore johnpaulca |
11/8/2009 2:15:28 PM
Chet, your programming skills are simply amazing....you rock.
|
chetron 2,817 posts msg #82648 - Ignore chetron modified |
11/8/2009 3:22:46 PM
I THOUGHT YOU'LD LIKE IT.....
AND FINALLY.....
|
chetron 2,817 posts msg #82671 - Ignore chetron modified |
11/9/2009 6:57:55 AM
WORK IN PROGRESS....
JUST PLAIN COUNT...
|
mktmole 325 posts msg #82676 - Ignore mktmole |
11/9/2009 9:36:33 AM
" Chet, your programming skills are simply amazing....you rock. "
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HEAR-HEAR ! !
|
chetron 2,817 posts msg #83887 - Ignore chetron modified |
12/5/2009 1:44:13 PM
FIND THE TOP OF THE BOTTOM
FIND THE BOTTOM OF THE TOP
GOOD READ...
|
shovel52 18 posts msg #83918 - Ignore shovel52 |
12/6/2009 3:28:08 PM
Yes most impressive! Would anyone know how to take Chetrons filter below, with the buy and sell signals, and write it to scan for stocks that have pulled back to the EMA 55 in a strong up trend so we can enter on the divergence? I have tried but with no results. This would be perfect for the system I am testing now. I am just trying to eliminate having to look through 500 stocks to find the pull backs. Genius coding here!
chetron 11/26/2007 7:50:24 PM
the reason for the buy/sell columns is to allow you to sort on the type of play you are comfortable with.
to my knowledge, you can't display arrows, it would be nice though. the best i can do is draw the plays on the chart, where the red line is sell and green is buy. the color depends on the order of the variables in the draw command.
p.s. ignore the blue line. lol
|
chetron 2,817 posts msg #89765 - Ignore chetron |
3/17/2010 8:55:55 AM
I LIKE THIS LOOK.....
|
Eman93 4,750 posts msg #90772 - Ignore Eman93 |
4/4/2010 9:37:15 AM
chetron
- Ignore chetron
modified 6/28/2008 10:53:18 AM
CANADIEN MALLARD PATTERN......
Fetcher[
/* TACHIKAWA */
/* LOOK FOR MACD HISTOGRAMS THAT LOOK LIKE A DUCK */
/* FLYING WESTWARDLY */
/* BULLISH */
set{var1,macd(4,8) histogram 1 day ago}
set{var2,var1 * 1.21}
SET{VMACDD,MACD(4,8) histogram}
SET{VAR3,COUNT(HIGH ABOVE LOWER BOLLINGER(20),1)}
SET{VAR4,COUNT(LOW BELOW LOWER BOLLINGER(20),1)}
SET{VBBPIERCE,VAR3 * VAR4}
ADD COLUMN VBBPIERCE
DRAW VMACDD LINE AT 0
DRAW RSI(2) LINE AT 0
DRAW RSI(2) LINE AT 100
DRAW WILLIAMS %R(2) LINE AT -0
DRAW WILLIAMS %R(2) LINE AT -100
MACD(4,8) HISTOGRAM < 0
MACD(4,8) HISTOGRAM > var2
RSI(2) CROSSED ABOVE 40
CLOSE ABOVE .3
VOLUME ABOVE 100000
DO NOT DRAW VAR2
CHART-TIME 22 DAY
===============================================
getting lots of hits 700+
|