| saico 59 posts
 msg #121626
 - Ignore saico
 | 10/1/2014 8:53:50 AM 
 How do you manage stops guys?
 
 
 | 
| jimmyjazz 102 posts
 msg #123476
 - Ignore jimmyjazz
 | 4/5/2015 11:49:04 AM 
 TRO, this is a very long thread with tons of filters.  I am curious about your "MTC Checker" concept to identify trading possibilities besides AAPL.  It seems that you define your triggers as fractions of a dollar, regardless of share price.  Did that change as the filter evolved?  For instance, this is one example from fairly early in the thread which identifies 3 stocks with a fair spread on underlying stock price (TSLA, GOOGL, TQQQ which range from ~ $100 to $550):
 
 Submit
 
 
 
 
 | 
| TheRumpledOne 6,529 posts
 msg #127139
 - Ignore TheRumpledOne
 | 2/4/2016 11:59:59 AM 
 That's right.  The buy zone does not change for stocks regardless of their share price.
 
 
 | 
| ron22 255 posts
 msg #137376
 - Ignore ron22
 | 8/5/2017 11:04:04 AM 
 TRO, I am trying to modify your "MTC Checker" as shown in jimmyjazz 4/5/15 post.  I am trying to compare buying at the Open versus buying at Open plus 10 cents. I cannot get
 
 set {hiop1, high - (open * 1.001)} to work. Any ideas? I would greatly appreciate your help. Ron(struggling newbie). Thanks and have a great weekend.
 
 
 | 
| Kevin_in_GA 4,599 posts
 msg #137377
 - Ignore Kevin_in_GA
 | 8/5/2017 12:38:41 PM 
 You can only do ONE mathematical calculation in a SET{} statement.  You have two in this one.
 
 
 | 
| ron22 255 posts
 msg #137378
 - Ignore ron22
 | 8/5/2017 2:34:20 PM 
 Kevin, Thank you for your help and quick reply. I added the first two set statements listed below with only one mathematical calculation in each set,  but I am still  getting "syntax errors". Any ideas?
 
 /* TRO MTC CHECKER */
 
 set{open1, (open*1.001) }
 set{ hiop, high - open1 }
 set{ up10, count( hiop > 0.09, 100 ) }
 set{ up50, count( hiop > 0.49, 100 ) }
 set{ pct1, up50 / up10 }
 set{winpct, 100 * pct1 }
 
 add column up10
 add column up50
 add column winpct
 
 
 up50 above 79
 
 
 | 
| graftonian 1,089 posts
 msg #137380
 - Ignore graftonian
 | 8/5/2017 3:54:48 PM 
 I do not know why but I added another qualifier at the top, and it works.
 market is not OTCBB
 
 
 | 
| mahkoh 1,065 posts
 msg #137381
 - Ignore mahkoh
 | 8/5/2017 5:04:11 PM 
 This should work:
 
 
 /* TRO MTC CHECKER */
 
 set{open1, open * 1.001 }
 set{ hiop, high - open1 }
 set{ up10, count( hiop > 0.09, 100 ) }
 set{ up50, count( hiop > 0.49, 100 ) }
 set{ pct1, up50 / up10 }
 set{winpct, 100 * pct1 }
 
 add column up10
 add column up50
 add column winpct
 
 
 up50 above 79
 
 
 | 
| ron22 255 posts
 msg #137385
 - Ignore ron22
 | 8/5/2017 7:11:15 PM 
 Kevin,Graftonia & Mahkoh, thank you all for your help. It works fine now. Good Trading! Ron
 
 
 | 
| TheRumpledOne 6,529 posts
 msg #140070
 - Ignore TheRumpledOne
 | 12/13/2017 3:40:07 PM 
 For those of you still concern with STOP LOSS, watch my video:
 
 https://www.youtube.com/watch?v=RQQTXx6yYFc
 
 
 |