tkirkpatrick1 24 posts msg #132072 - Ignore tkirkpatrick1 |
10/23/2016 10:44:41 PM
I would really like to know if there is away to show candlesticks that only have whole bodies no wick on top or bottom. Looking for both bullish and bearish. Can anyone help me with this would be greatly appreciated.
|
Mactheriverrat 3,153 posts msg #132073 - Ignore Mactheriverrat |
10/23/2016 10:50:57 PM
Look at the top of the SF screen where Examples are . Then scroll down to candles . What your looking for should be there.
|
mahkoh 1,065 posts msg #132083 - Ignore mahkoh |
10/24/2016 3:03:54 PM
|
tkirkpatrick1 24 posts msg #132090 - Ignore tkirkpatrick1 |
10/24/2016 9:22:05 PM
Thank you so much this is exactly what I was looking for.. I would love to better understand the variables used to create this, but I am very grateful for your help.
|
mahkoh 1,065 posts msg #132096 - Ignore mahkoh modified |
10/25/2016 12:22:19 PM
Youre welcome. Some explanation of the code used
russell2000 // look for stocks within Russell 2000
set{x, count(open equal low,1)} // returns 1 if true
set{y, count(close equal high,1)} // returns 1 if true
set{z,x * y} // returns 1 only if x and y are true
set{a ,count(open equal high,1)} // returns 1 if true
set{b, count(close equal low,1)} // returns 1 if true
set{c,a * b} // returns 1 only if a and b are true
set{q, c + z}
q above 0.5 // either c or z have to return 1 (or both if it were possible)
|