Binary Heikin Ashi Crossover for TradeStation

June 13th, 2009 | Categories: ESEC Futures, Market Minds

Hey Traders,

this binary heikin ashi code will be displayed in a subgraph with either 1 for uptrend or 0 for downtrend, excellent if you want to look at original style candles and still use the heikin ashi trend tool:
{HACO}
inputs:
Avg( 34 ),
AvgDn( 34 );

variables:
TMA1g(0),
TMA2g(0),
Diffg(0),
ZlHag(0),
ZlClg(0),
ZlDifg(0),
TMA1r(0),
TMA2r(0),
Diffr(0),
ZlHar(0),
ZlClr(0),
ZlDifr(0),

keep1r(false),
keep2r(false),
keep3r(false),
keepingr(false),
keepallr(false),
keep1g(false),
keep2g(false),
keep3g(false),
keepingg(false),
keepallg(false),
utr(false),
dtr(false),
upw(false),
dnw(false),
result(” “);
{CrossOver formula}
TMA1g= Tema(haC,avg);
TMA2g= Tema(TMA1g,avg);
Diffg= TMA1g - TMA2g;
ZlHag= …

Read the original here:
Binary Heikin Ashi Crossover for TradeStation

blog comments powered by Disqus
TOP