They may have had aggressive strike selection. {understatement}
Ouch! lol
Ouch! lol
Quote from domestic:
ok, let's say that is actually a fact (aggressive strike selection). i may be a little naive (or poor with math); how come their monthly return is not that high?
my return is 6-10% monthly(most withdrawn and not compounded) for the past 5 years and i think i am very very "nonaggressive".
Quote from optioncoach:
They may have had aggressive strike selection. {understatement}
Ouch! lol
Quote from piccon:
Anybody knows how to calculate RSI(2). I have the right formula but because they use nbrdays up and nbrdays down in the calculation, I may have a number divided by 0 when there are a lot of consecutive up or down days (like last three weeks).
I am doing some backtesting around Stochastic and RSI. I went back 10 years with stochastic and see what happened after a certain period of time when Stochastic reachs a certain point.
I want to do the same thing with RSI but the formula I get doesnt work. I am loking especially for RSI(2), RSI(5).
I can get it with TOS software but I have to go one day at a time. I can write the software that spits the information in seconds.
Anybody's help will be appreciated.
Thanks
Quote from jamesbp:
Domestic
Apologies for not backtracking on your posts, but can you give a flavour of your investing 'style' that generates such great returns?
Cheers
James
LJM slipped up a little bit, also.Quote from jeffm:
One of the multi-cta pimping brokers sent me their normal end of the month newsletter today. I read it because its an easy way to keep an eye on what various ctas and systems are doing.
Here's a little gem from this month's edition:
In the S&P options market, World Capital and Argus were both caught short calls and will be citing drawdowns of 30-40% for the month. Both mangers have now had a chance to reassess the markets and will be getting back to work this week. Anyone invested in Argus please give us a call to review the changes to his program.
Dayum! That's a pretty nasty spanking there, fellas. I love how it sounds like they got called into the principal's office for a lecture. I guess they won't be cashing any 20% performance checks for awhile...
Quote from Prevail:
Here is TS's code:
{ Relative Strength Index; note that the algorithm used here is a simpler and more
efficient mathematical equivalent of the original Wilder algorithm }
inputs:
Price( numericseries ),
Length( numericsimple ) ; { this input assumed to be a constant >= 1 }
variables:
NetChgAvg( 0 ),
TotChgAvg( 0 ),
Change( 0 ),
SF( 1 / Length ), { smoothing factor }
ChgRatio( 0 ) ;
if CurrentBar = 1 then
begin
NetChgAvg = ( Price - Price[Length] ) / Length ;
TotChgAvg = Average( AbsValue( Price - Price[1] ), Length ) ;
end
else
begin
Change = Price - Price[1] ;
NetChgAvg = NetChgAvg[1] + SF * ( Change - NetChgAvg[1] ) ;
TotChgAvg = TotChgAvg[1] + SF * ( AbsValue( Change ) - TotChgAvg[1] ) ;
end ;
if TotChgAvg <> 0 then
ChgRatio = NetChgAvg / TotChgAvg
else
ChgRatio = 0 ;
RSI = 50 * ( ChgRatio + 1 ) ;