Quote from Dynomitedoll:
Thanks .This really is a gem of a good trading code .With a few modifications on the perc values we also get long term support/resistance lines. Wow. I would say its a very good job.
Quote from ace_inc_007:
TSOKAKIS,
I'm aware that this is AFL code. I think this indicator you created has alot of benefit.
Unfortunately I'm a Tradestation user, so that's why I was wondering if anyone had made a code conversion to Tradestation for this indicator.
If so, would they be willing to post it.
Thanks...
Quote from TSOKAKIS:
At the end of the code
http://finance.groups.yahoo.com/gro...r/message/69570
add the
Filter = IIf ( g , L > p , H < p ) ;
AddColumn ( g , " g " , 1.0 ) ;
and explore for the n=1 last quotations.
The result will give the stocks with the entire last candle above [below] the descending [ascending] best-fit parabolic.
g is equal to 1 for the descending parabolic and it is equal to 0 for the ascending one.
[the method gave an exit signal on Jan4 for the Nikkei index and a buy signal on Jan26 for the ^NDX]
Quote from Dynomitedoll:
____________________________________________________
Now, if you want to catch a [Close, parabolic] cross for the very last bar, use the
Filter = IIf ( g , Cross ( C , p ) , Cross ( p , C ) ) ;
AddColumn ( g , " g " , 1.0 ) ;
The N100 exploration for the 28/1/2005 gives 25 stocks, 12 with descending parabolic [g=1] and 13 for the ascending one [g=0].
[I think QCOM and APOL were interesting for further analysis...]
You could also replace C by H or L or Avg according to your plans.
____________________________________________________
Please find attached support and resistance for entry and exit for your code(I could use this this way also i guess).A slightly higher thresh-hold for the zig > 10 gives a long term support or resistance.It is a really nice code much better and effective than most i have see around including s&c mag.Currently Developing a trading system using this .What is the significance of the fvar.How does one attenuate using it.It shoots up within a few bars and then moves slowly in opposite direction.
Thanks for sharing this .It really is nice and charitable of you!
Quote from TSOKAKIS:
Now, if you want to catch a [Close, parabolic] cross for the very last bar, use the
Filter = IIf ( g , Cross ( C , p ) , Cross ( p , C ) ) ;
AddColumn ( g , " g " , 1.0 ) ;
The N100 exploration for the 28/1/2005 gives 25 stocks, 12 with descending parabolic [g=1] and 13 for the ascending one [g=0].
[I think QCOM and APOL were interesting for further analysis...]
You could also replace C by H or L or Avg according to your plans.
Quote from TSOKAKIS:
Now, if you want to catch a [Close, parabolic] cross for the very last bar, use the
Filter = IIf ( g , Cross ( C , p ) , Cross ( p , C ) ) ;
AddColumn ( g , " g " , 1.0 ) ;
The N100 exploration for the 28/1/2005 gives 25 stocks, 12 with descending parabolic [g=1] and 13 for the ascending one [g=0].
[I think QCOM and APOL were interesting for further analysis...]
You could also replace C by H or L or Avg according to your plans.
Quote from TSOKAKIS:
Yesterday we saw 12 descending/13 ascending crosses.
The ratio is significantly changed today for the N100 stocks.
7 ascending vs 15 descending.
It is equivalent to 7 bearish vs 15 bullish signals.
Of course it is not coincidental, as you may suppose...