StockFetcher Forums · General Discussion · NEVER LOSE AGAIN!!<< 1 ... 100 101 102 103 104 ... 105 >>Post Follow-up
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
Fetcher[
/* TRO MTC CHECKER */

set{ hiop, high - open }
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

average volume(90) above 1000000

market is nasdaq

sort column 7 descending
]




TheRumpledOne
6,407 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,407 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

StockFetcher Forums · General Discussion · NEVER LOSE AGAIN!!<< 1 ... 100 101 102 103 104 ... 105 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.