snappyfrog 721 posts msg #146275 - Ignore snappyfrog |
1/26/2019 9:33:44 PM
I should have said day position instead of range.
|
schang91 8 posts msg #146277 - Ignore schang91 |
1/26/2019 11:30:25 PM
what does day position mean in this case?
Also, can you please help me with this dragonfly doji scanner? This is my script. and the screenshot is the type of chart with dragonly that I like to see
http://prntscr.com/mcpj2x the dragonfly has a nice long tail and below 20/50/200ma after a few red candles.
the price is below EMA(20)
close is above 1.5
average volume is above 500000
volume has been increasing for 2 days
show stocks where close is below close 1 day ago
show stocks where close is more than 5% less below close 1 day ago
Close is above Day Position(0.60,1)
Open is below Day Position(0.5,1)
open near close
close > open
Thanks
|
four 5,087 posts msg #146279 - Ignore four modified |
1/27/2019 4:24:02 AM
File should help with your question about "what does day position mean"
Examples of Day Ranges and calculation that StockFetcher applies to obtain the $ value
Click on image to view
|
four 5,087 posts msg #146280 - Ignore four modified |
1/27/2019 5:04:11 AM
Based on the calculation AND your visual, I would start with this and then modify as needed. See filter on right-side of image.
Click on image to view
|
snappyfrog 721 posts msg #146284 - Ignore snappyfrog |
1/27/2019 11:20:04 AM
|
miketranz 961 posts msg #146309 - Ignore miketranz |
1/29/2019 9:55:05 AM
set{body_bottom,min(open,close)}
set{body_top,max(open,close)}
set{body_size,body_top - body_bottom}
set{lshadowsize, body_bottom - low}
/* *********** had a typo here ********* */
set{body_size2, body_size * 2}
set{tshadowsize, high - body_top}
lshadowsize is greater then .2
and lshadowsize is greater then body_size2
and body_size is greater then 0
and price is greater then .5
and open is less then Lower Bollinger Band(20)
and close is greater then open
and offset 1 days ago
|
Cheese 1,374 posts msg #146310 - Ignore Cheese |
1/29/2019 11:11:16 AM
|
miketranz 961 posts msg #146316 - Ignore miketranz |
1/29/2019 7:35:04 PM
Thank you Cheese,I should have known better....
|
Cheese 1,374 posts msg #146317 - Ignore Cheese |
1/29/2019 7:53:01 PM
You are welcome. Mike.
Good filter.
|
Cheese 1,374 posts msg #146386 - Ignore Cheese modified |
2/2/2019 1:34:17 AM
/* https://www.stockfetcher.com/forums/Public-Filters/Gravestone-Doji/36164 */
/* Gravestone Doji */
/* code by StockFetcher 6/2/2005 2:02:24 PM */
/* https://www.stockfetcher.com/forums/Public-Filters/Dragon-Fly-Doji/36163 */
/* Dragon Fly Doji */
/* code by StockFetcher 6/2/2005 2:00:10 PM */
|