StockFetcher Forums · Filter Exchange · TRO'S CROCK POT 2.0<< 1 ... 7 8 9 10 11 ... 27 >>Post Follow-up
ron22
255 posts
msg #157399
Ignore ron22
8/17/2021 5:25:36 PM

Is it possible to add a column that counts how many times stock achieves 2.0% below open?
I appreciate any help in this matter.

Submit
Fetcher[
set{hiop,high - open}
set{hioppct,hiop / open}
set{trigger,0.03} /*Trigger - Stock Up 3% from open*/
set{trigger1,1 + trigger}
set{triggervalue,trigger1 * open}
set{gain0.25%,trigger + 0.0025}
set{gain0.5%,trigger + 0.005}
set{gain1.0%,trigger + 0.01}
set{gain1.5%,trigger + 0.015}
set{gain2.0%,trigger + 0.02}
set{gain2.5%,trigger + 0.025}
set{gain3.0%,trigger + 0.03}
set{uptrigger,count(hioppct > trigger,100)}/*Count how many times stock achieves 3% above open*/
set{upgain0.25%,count(hioppct > gain0.25%,100)}/*Count how many times stock achieves 0.25% above trigger*/
set{upgain0.5%,count(hioppct > gain0.5%,100)}/*Count how many times stock achieves 0.5% above trigger*/
set{upgain1.0%,count(hioppct > gain1.0%,100)}/*Count how many times stock achieves 1.0% above trigger*/
set{upgain1.5%,count(hioppct > gain1.5%,100)}/*Count how many times stock achieves 1.5% above trigger*/
set{upgain2.0%,count(hioppct > gain2.0%,100)}/*Count how many times stock achieves 2.0% above trigger*/
set{upgain2.5%,count(hioppct > gain2.5%,100)}/*Count how many times stock achieves 2.5% above trigger*/
set{upgain3.0%,count(hioppct > gain3.0%,100)}/*Count how many times stock achieves 3.0% above trigger*/
set{up0.25,upgain0.25%}
set{up0.5,upgain0.5%}
set{up1.0,upgain1.0%}
set{up1.5,upgain1.5%}
set{up2.0,upgain2.0%}
set{up2.5,upgain2.5%}
set{up3.0,upgain3.0%}
add column open
add column uptrigger{trigger3%}
add column triggervalue
add column up0.25{up0.25%}
add column up0.5{up0.5%}
add column up1.0{up1%}
add column up1.5{up1.5%}
add column up2.0{up2%}
add column up2.5{up2.5%}
add column up3.0{up3.0%}
sort column 8 descending

average volume(30) above 500000
close above 10
uptrigger above 40
]



Cheese
1,374 posts
msg #157400
Ignore Cheese
8/17/2021 6:05:43 PM

https://www.stockfetcher.com/forums/Filter-Exchange/TRO-S-CROCK-POT-2-0/115856/99999
ron22 8/17/2021 5:25:36 PM
counts how many times stock achieves 2.0% below open?
=========================================================================

Were you looking for something like this?
Happy trading

Fetcher[

set{hiop,high - open}
set{hioppct,hiop / open}
set{trigger,0.03} /*Trigger - Stock Up 3% from open*/
set{trigger1,1 + trigger}
set{triggervalue,trigger1 * open}
set{gain0.25%,trigger + 0.0025}
set{gain0.5%,trigger + 0.005}
set{gain1.0%,trigger + 0.01}
set{gain1.5%,trigger + 0.015}
set{gain2.0%,trigger + 0.02}
set{gain2.5%,trigger + 0.025}
set{gain3.0%,trigger + 0.03}
set{uptrigger,count(hioppct > trigger,100)}/*Count how many times stock achieves 3% above open*/
set{upgain0.25%,count(hioppct > gain0.25%,100)}/*Count how many times stock achieves 0.25% above trigger*/
set{upgain0.5%,count(hioppct > gain0.5%,100)}/*Count how many times stock achieves 0.5% above trigger*/
set{upgain1.0%,count(hioppct > gain1.0%,100)}/*Count how many times stock achieves 1.0% above trigger*/
set{upgain1.5%,count(hioppct > gain1.5%,100)}/*Count how many times stock achieves 1.5% above trigger*/
set{upgain2.0%,count(hioppct > gain2.0%,100)}/*Count how many times stock achieves 2.0% above trigger*/
set{upgain2.5%,count(hioppct > gain2.5%,100)}/*Count how many times stock achieves 2.5% above trigger*/
set{upgain3.0%,count(hioppct > gain3.0%,100)}/*Count how many times stock achieves 3.0% above trigger*/
set{up0.25,upgain0.25%}
set{up0.5,upgain0.5%}
set{up1.0,upgain1.0%}
set{up1.5,upgain1.5%}
set{up2.0,upgain2.0%}
set{up2.5,upgain2.5%}
set{up3.0,upgain3.0%}
add column open
add column uptrigger{trigger3%}
add column triggervalue
add column up0.25{up0.25%}
add column up0.5{up0.5%}
add column up1.0{up1%}
add column up1.5{up1.5%}
add column up2.0{up2%}
add column up2.5{up2.5%}
add column up3.0{up3.0%}
sort column 8 descending

average volume(30) above 500000
close above 10
uptrigger above 40


/* **************************** a start for ron22 to tweak further Aug 17, 2021 ************************** */

set{98%ofopen,0.98 * open}
set{2.0%belowopen,count(price < 98%ofopen,100)}/*Count how many times stock achieves 2.0% below open*/
add column 2.0%belowopen
draw 2.0%belowopen


]



ron22
255 posts
msg #157402
Ignore ron22
8/17/2021 8:30:36 PM

Cheese, Thank you very much for your fast reply and helpful code. That is exactly what I wanted.
I do have one other problem. I want to add another column labeled "diff" that subtracts the 2.0%belowopen column from the up2% column.
I added below code but it does not work.

set{diff, up2% - 2.0%belowopen}
add column diff

Any ideas?

xarlor
562 posts
msg #157403
Ignore xarlor
8/17/2021 8:34:50 PM

The variable up2% is not a defined variable. Use up2.0 instead.

set{diff, up2.0 - 2.0%belowopen}
add column diff

Cheese
1,374 posts
msg #157404
Ignore Cheese
8/17/2021 8:37:57 PM

https://www.stockfetcher.com/forums/Filter-Exchange/TRO-S-CROCK-POT-2-0/115856/80
ron22 8/17/2021 8:30:36 PM

Cheese, Thank you very much for your fast reply and helpful code. That is exactly what I wanted.
I do have one other problem. I want to add another column labeled "diff" that subtracts the 2.0%belowopen column from the up2% column.
=================================================================================


maybe something like this...

Good luck, ron. Happy trading.

Fetcher[

set{hiop,high - open}
set{hioppct,hiop / open}
set{trigger,0.03} /*Trigger - Stock Up 3% from open*/
set{trigger1,1 + trigger}
set{triggervalue,trigger1 * open}
set{gain0.25%,trigger + 0.0025}
set{gain0.5%,trigger + 0.005}
set{gain1.0%,trigger + 0.01}
set{gain1.5%,trigger + 0.015}
set{gain2.0%,trigger + 0.02}
set{gain2.5%,trigger + 0.025}
set{gain3.0%,trigger + 0.03}
set{uptrigger,count(hioppct > trigger,100)}/*Count how many times stock achieves 3% above open*/
set{upgain0.25%,count(hioppct > gain0.25%,100)}/*Count how many times stock achieves 0.25% above trigger*/
set{upgain0.5%,count(hioppct > gain0.5%,100)}/*Count how many times stock achieves 0.5% above trigger*/
set{upgain1.0%,count(hioppct > gain1.0%,100)}/*Count how many times stock achieves 1.0% above trigger*/
set{upgain1.5%,count(hioppct > gain1.5%,100)}/*Count how many times stock achieves 1.5% above trigger*/
set{upgain2.0%,count(hioppct > gain2.0%,100)}/*Count how many times stock achieves 2.0% above trigger*/
set{upgain2.5%,count(hioppct > gain2.5%,100)}/*Count how many times stock achieves 2.5% above trigger*/
set{upgain3.0%,count(hioppct > gain3.0%,100)}/*Count how many times stock achieves 3.0% above trigger*/
set{up0.25,upgain0.25%}
set{up0.5,upgain0.5%}
set{up1.0,upgain1.0%}
set{up1.5,upgain1.5%}
set{up2.0,upgain2.0%}
set{up2.5,upgain2.5%}
set{up3.0,upgain3.0%}
add column open
add column uptrigger{trigger3%}
add column triggervalue
add column up0.25{up0.25%}
add column up0.5{up0.5%}
add column up1.0{up1%}
add column up1.5{up1.5%}
add column up2.0{up2%}
add column up2.5{up2.5%}
add column up3.0{up3.0%}
sort column 8 descending

average volume(30) above 500000
close above 10
uptrigger above 40


/* **************************** a start for ron22 to tweak further Aug 17, 2021 ************************** */

set{98%ofopen,0.98 * open}
set{2.0%belowopen,count(price < 98%ofopen,100)}/*Count how many times stock achieves 2.0% below open*/
add column 2.0%belowopen
draw 2.0%belowopen

/* **************************** add diff for ron22 to tweak further Aug 17, 2021 ************************** */

set{diff, up2.0 - 2.0%belowopen}
add column diff
]



ron22
255 posts
msg #157406
Ignore ron22
8/17/2021 11:01:48 PM

Xarlor & Cheese, Thank you both for your help in fixing my code. I thought that it was a small error that I was overlooking. Thanks again, Ron

Cheese
1,374 posts
msg #157425
Ignore Cheese
8/25/2021 1:56:24 AM

Question to peeps who have experience trading the CROCK POT.
************************************************************************

TRO recommended 1% weekly when he came up with the CROCK POT idea.
olathegolf and ron22 wrote CROCK POT posts for 2% weekly
Kevin had CROCK POT posts and threads for 5% weekly
JoeyVinyl had CROCK POTposts and threads for 10% weekly.

So, is this the thinking behind the CROCK POT?

First, we scan and filter for the highest stats with 5% to 10% weekly gains,
and then aim to get 1% to 2% weekly gain?

That would make it safer than to scan and filter for the highest stats with 1% to 2% weekly gains,
and aim for 1% weekly gains?

Thank you in advance for sharing your experience.

VenturaTrader
43 posts
msg #157432
Ignore VenturaTrader
8/25/2021 10:45:55 PM

I suggest you looks for posts by a fellow named Oldsmar52. He claims to have traded the Crock Pot for several years while he was working and claims he made enough money to pay for a retirement home in Florida.

His posts inspired me to trade the Crock Pot using 1%, 2% and 5% profit targets. Oldsmar developed some rules to enhance the system. I recall he used market orders at the open and would not enter a position near when earnings were reported. He claims he never had a big loss and eventually every trade was profitable.

I got organized about 18 months ago and traded it for a couple of months. Most of the time the trades hit the profit targets but once in a while the target was not hit and holding the position, as Oldsmar claimed he did, resulted in big losses. The losses offset the 1%, 2% and 5% profits to the point I gave up on trading the Crock Pot. If I was to start trading the Crock Pot again, I would not hold a position very long and definitely don't hold longer than a week. I hope this helps.

Mike

Cheese
1,374 posts
msg #157433
Ignore Cheese
8/25/2021 11:20:26 PM

https://www.stockfetcher.com/sfforums/?q=post&fid=1002&tid=115856
VenturaTrader 8/25/2021 10:45:55 PM

I suggest you looks for posts by a fellow named Oldsmar52. He claims to have traded the Crock Pot for several years while he was working and claims he made enough money to pay for a retirement home in Florida.

His posts inspired me to trade the Crock Pot using 1%, 2% and 5% profit targets. Oldsmar developed some rules to enhance the system. I recall he used market orders at the open and would not enter a position near when earnings were reported. He claims he never had a big loss and eventually every trade was profitable.

I got organized about 18 months ago and traded it for a couple of months. Most of the time the trades hit the profit targets but once in a while the target was not hit and holding the position, as Oldsmar claimed he did, resulted in big losses. The losses offset the 1%, 2% and 5% profits to the point I gave up on trading the Crock Pot. If I was to start trading the Crock Pot again, I would not hold a position very long and definitely don't hold longer than a week. I hope this helps.

Mike
=================================================================================

@VenturaTrader
THANK YOU so much for a very helpful reply.


shillllihs
5,974 posts
msg #157434
Ignore shillllihs
8/26/2021 12:00:51 AM

How do you manage your losses with this system?

StockFetcher Forums · Filter Exchange · TRO'S CROCK POT 2.0<< 1 ... 7 8 9 10 11 ... 27 >>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.