sunny101 53 posts msg #117997 - Ignore sunny101 |
2/2/2014 12:43:04 PM
i am trying to create a filter which will show me a big full bullish or big full bearish candle compared to last 10 days of trading. can anyone help,,,thanks in advance
|
Mactheriverrat 3,153 posts msg #118003 - Ignore Mactheriverrat |
2/2/2014 11:44:54 PM
On the SF home page you should see "Market Technicals" then go to the "Candlesticks" . Try Bullish Engulfing and Bearish Engulfing.
|
tmuesing 30 posts msg #118483 - Ignore tmuesing |
3/5/2014 11:13:20 AM
Here's a candle filter that might help you.
[
/* CANDLE PARTS % */
S&P500
set{ctop, MAX(open, close)}
set{cbot, MIN(open, close)}
/* top tail */
set{ccc, high - ctop}
set{ddd, ccc / close}
set{TopTail%, ddd * 100}
/* body */
set{eee, ctop - cbot}
set{fff, eee / close}
set{CandleBody%, fff * 100}
/* bottom tail */
set{ggg, cbot - low}
set{hhh, ggg / close}
set{BottomTail%, hhh * 100}
add column separator
add column high
add column ctop
add column cbot
add column low
add column average day range(10)
add column separator
add column TopTail%
add column CandleBody%
add column BottomTail%
add column day range
/* candle body size, 0.3 is adjustable */
set{cbody%,average day range(10) * 0.3}
CandleBody% > cbody%
/* thru MA(50) */
ctop > MA(50)
cbot < MA(50)
close > MA(50)
sort on column 13 descending
]
|
tmuesing 30 posts msg #118484 - Ignore tmuesing |
3/5/2014 11:20:32 AM
take out the line near bottom,
close > MA(50)
for bearish ones too.
Big Tom
|
four 5,087 posts msg #118520 - Ignore four |
3/6/2014 7:37:48 PM
|