fotchstecker 304 posts msg #129142 - Ignore fotchstecker modified |
6/14/2016 9:51:59 PM
Has anyone successfully integrated the concept/calculation of Heiken Ashi into a scan? Ultimately, what I'm looking to do is to create a rule that would say:
"And Heiken Ashi turned from red to green" for the latest day.
|
graftonian 1,089 posts msg #129153 - Ignore graftonian |
6/15/2016 12:11:37 PM
"Before moving to a spreadsheet example, note that we have a chicken and egg dilemma. We need our first Heikin-Ashi candlestick before we can calculate future Heikin-Ashi candlesticks."
Does anyone know how to solve this problem in SF?
|
Mactheriverrat 3,153 posts msg #129157 - Ignore Mactheriverrat |
6/15/2016 2:50:29 PM
Forget Heiken Ashi on SF
Been there , done that!
|
fotchstecker 304 posts msg #129161 - Ignore fotchstecker |
6/15/2016 4:46:29 PM
Say it ain't so.
Four?
|
graftonian 1,089 posts msg #129173 - Ignore graftonian |
6/16/2016 7:22:22 AM
I don't understand. Can this be done, or do you not think it is worth the trouble? I repeat my original question.
|
Mactheriverrat 3,153 posts msg #129183 - Ignore Mactheriverrat |
6/16/2016 2:20:58 PM
As far as I can tell Heiken Ashi can't be done using SF. Now watch a someone come along and write some code to make it happen I hope.
|
graftonian 1,089 posts msg #129190 - Ignore graftonian |
6/16/2016 4:05:17 PM
Mac, Ya gotta throw out the challenge, I couldn't figure it out
|
Kevin_in_GA 4,599 posts msg #129193 - Ignore Kevin_in_GA |
6/16/2016 5:48:28 PM
Beats me how to do this ...
|
graftonian 1,089 posts msg #129204 - Ignore graftonian |
6/17/2016 9:01:03 AM
Now for an off topic question. let's say:
set{x, days(close > ema(13)}
can we determine the close "x" days ago?
set{y, close x days ago}
|
Mactheriverrat 3,153 posts msg #129221 - Ignore Mactheriverrat |
6/17/2016 11:48:07 AM
Only thing I know that might is see the below code for counting days. Look for day 2 then use freestockcharts.com or stockcharts.com and Heiken Ashi candle's.
CxC is number of consecutive days close above (+)/below(-) previous close and set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)} set{CxC, CCa - CCb} and add column CxC {C_x_C}
do not draw CxC
|