TheRumpledOne 6,529 posts msg #39472 - Ignore TheRumpledOne | 
12/11/2005 10:22:31 PM
 
  	    
 
 PERHAPS THIS IS THE FINISHING TOUCH!!
 
 The last 4 lines of code draw the chart just like on www.prophet.net.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
TheRumpledOne 6,529 posts msg #39477 - Ignore TheRumpledOne | 
12/12/2005 8:23:04 AM
  If you want to add the DISPLAY CODE to your filter, insert the following:
 
 /* MPs RSIWRL DISPLAY CODE */ 
 
 /* NORMALIZE accumulation distribution */ 
 
 set{adval, INDPOSITION(accumulation distribution, 60) } 
 
 /* NORMALIZE momentum(12) */ 
 
 set{moval, INDPOSITION(momentum(12), 60) } 
 
 /* NORMALIZE rsi(2) */ 
 
 set{rsval, INDPOSITION(RSI(2), 60) } 
 
 /* NORMALIZE williams %r(10) */ 
 
 set{wrval, INDPOSITION(williams %r(10), 60) } 
 
 /* DISPLAY THE COLUMNS */
 
 add column wrval 
 add column adval 
 add column rsval 
 add column moval 
 
 
 /* DRAW THE MP RSIWLR CHART */ 
 
 and draw wrval 
 and draw adval on plot wrval 
 and draw moval on plot wrval 
 and draw rsval on plot wrval 
 
 /* END MPs RSIWRL DISPLAY CODE */ 
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
sggc 4 posts msg #39479 - Ignore sggc | 
12/12/2005 9:27:41 AM
  Where and what is Mike's QT Setup.  Thanks for sharing your knowledge,and also, for your tolerance.   Carl
 
 
  | 
TheRumpledOne 6,529 posts msg #39482 - Ignore TheRumpledOne | 
12/12/2005 7:29:21 PM
  You can find MP's (Mike Parker's) setup at www.stockhideout.com.
 
 Full detailed instructions are there.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
TheRumpledOne 6,529 posts msg #39490 - Ignore TheRumpledOne | 
12/13/2005 9:53:39 AM
  One little change:
 
 
 /* MP RSIWLR ANALYZER DISPLAY */ 
 /* NORMALIZE accumulation distribution */ 
 
 set{adval, INDPOSITION(accumulation distribution, 60) * 100 } 
 
 /* NORMALIZE momentum(12) */ 
 
 set{moval, INDPOSITION(momentum(12), 60) * 100} 
 
 /* NORMALIZE rsi(2) */ 
 
 set{rsval, RSI(2) } 
 
 /* NORMALIZE williams %r(10) */ 
 
 set{wrval, INDPOSITION(williams %r(10), 60) * 100 } 
 
 /* DISPLAY THE COLUMNS */ 
 
 add column wrval 
 add column adval 
 add column rsval 
 add column moval 
 
 
 /* DRAW THE MP RSIWLR CHART */ 
 
 and draw wrval 
 and draw adval on plot wrval 
 and draw moval on plot wrval 
 and draw rsval on plot wrval 
 
 /* END MPs RSIWRL DISPLAY CODE */ 
 
 I noticed the RSI line on prophet didn't change when you superimpose the indicators.
 
 So instead of using INDPOSITION on RSI(2), I multiplied the other indicators by 100 to normalize on a scale of 0 - 100.  So now it matches www.prophet.net.
 
 
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
 
 
  | 
stevec2 5 posts msg #39505 - Ignore stevec2 | 
12/14/2005 11:37:44 AM
  Nice job on the filter Rump!
 thanks
 
 
 
  | 
Stocksight 33 posts msg #40705 - Ignore Stocksight | 
1/26/2006 2:25:54 AM
  Avery, great example of skilled programming.  I really enjoyed how you pursed the goal and didn't stop until you nailed it.  Very nice!  Now, I just need to get a larger monitor to see all the columns. ;-).
 
 
  | 
TheRumpledOne 6,529 posts msg #40711 - Ignore TheRumpledOne | 
1/26/2006 8:34:50 AM
  It's not the columns, it's the CHART!
 
 When you see all 4 lines at the bottom get ready to LOAD THE BOAT when the stock shows signs of life!
 
 Sometimes just the red (A/D) or green (Momentum) line will bottom.   That's a "Head's Up" to get ready.
 
 Of course, when the blue (RSI(2)) bottoms, you know what to do.
 
 The columns are for sorting/selecting, so you can see what stocks bottomed/top on each indicator.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
TheRumpledOne 6,529 posts msg #40712 - Ignore TheRumpledOne | 
1/26/2006 8:39:30 AM
  "Avery, great example of skilled programming. I really enjoyed how you pursed the goal and didn't stop until you nailed it. Very nice! Now, I just need to get a larger monitor to see all the columns. ;-)."
 
 If you think this is something, you should see what I have done on TradeStation...
 
 Of course, I implemented the RSIWRL Display in REAL TIME.
 
 So far this year, I have finished Dynamic Support/Resistance, Dynamic Fibs, Dynamic Gridiron, Dynamic Risk/Reward Analysis, Position Sizing and the Auto Avery Trade Manager that has technical entries and Money Management and Technical exits.
 
 I am finishing DYNAMIC CANDLESTICK PATTERN RECOGNITION.
 
 And, best of all, it is all FREE!   Of course, I accept gifts and donations from those who appreciate my work.
 
 
 
 
 
 
 
 
  | 
arthur702 38 posts msg #40788 - Ignore arthur702 | 
1/30/2006 12:12:45 PM
  rumpled, can you add to the filter a statement that shows stocks that have all 4 warm lines ehading up from the bottom and just crossed above 25-50 within the last 1 day?
 
 
 Thanks.
 
 
  |