Tuesday, August 18, 2009

破解软件的post都删除了

如果你还没有来得及下载, 请email我 biorjin@yahoo.com 我可以给你一份打包下载的东西

从今天开始,我会把我的一些backbone 系统陆续放上来

Sunday, August 16, 2009

Intraday swing trade systems




今天忙着整理我的swing trade systems
从老计算机上找到我刚开始fulltime day trading的时候的8块毛玉,
说是毛玉,因为他们都是简单backbone systems,几乎没有使用filter优化处理, 但是就是这么一些backbone systems 却体现出很好的potential。我现在使用的2个自动交易系统就是从他们中间优化而来的。
以下是最近他们的performance,

考考大家

1,有谁能猜到,哪两个是我现在系统的原型吗?
2, 哪个prototype systems最近的表现最好?


Saturday, August 15, 2009

大盘何去何从

http://eodswingtrader.blogspot.com/

其实看大家每天这么猜来猜去的也蛮累的.
retail trader得到的那点信息不是晚了,就是错的.
以前说的大家都应该有自己的系统, trading, 和poker一样, 玩得是统计, 而不是赌博.and charts,
only charts tell the truth.
上些spy EOT swing trade的图, 最近4年的.
图上的indicators都是custmerized

Wednesday, August 5, 2009

Chatroom password

I didnot know it has to be more than 5 letters

so I change it to blog09

sorry about that

Saturday, August 1, 2009

Nice trading last week

We have about 40 traders trading together, nice trading week.

I will see you folks next week, same chatroom (ES live trading calls)


http://express.paltalk.com/index.html?gid=1200300403


trading time: 9:30AM EST-- 16:00 PM EST

If you have trouble hearing my comments, you should be able to solve the problem by downloading paltalkscen software from paltalk.com

Monday, March 23, 2009

where to buy the dip



Okay, we had a huge rally, and we had 2 day back-to-back pull back,

so it is all about where to buy the dip,

watching the charts carefully, you can easily realize the second wave generally starts when green line (RSI2) enter oversold zone.

so what you should do? right! start to accumulate after it is oversold.

Monday, February 16, 2009

Daytrading Osc




/* DT Oscillator
**
** AFL translation by X-Trader
** http://www.x-trader.net
**
*/

PeriodRSI= Param("PeriodRSI", 13, 1, 250, 1);
PeriodStoch=Param("PeriodStoch", 8, 1, 250, 1);
MAType=Param("MAType", 1, 1, 2, 1);
PeriodSK=Param("PeriodSK", 5, 1, 250, 1);
PeriodSD=Param("PeriodSD", 3, 1, 250, 1);
Upper=Param("Upper", 70, 50, 100, 1);
Lower=Param("Lower", 30, 0, 50, 1);


StoRSI= 100*(( RSI( PeriodRSI) - LLV( RSI( PeriodRSI ) , PeriodStoch ) ) / ( ( HHV( RSI( PeriodRSI) , PeriodStoch ) ) - LLV(RSI( PeriodRSI ), PeriodStoch ) ) );

if(MAType==1)
{
SK=MA(StoRSI,PeriodSK);
SD=MA(SK,PeriodSD);
}

if(MAType==2)
{
SK=EMA(StoRSI,PeriodSK);
SD=EMA(SK,PeriodSD);
}

Plot(SK,"DTOscSK",ParamColor( "ColorSK", colorBlue ),styleLine);
Plot(SD,"DTOscSD",ParamColor( "ColorSD", colorBlack ),styleDashed);
Plot(0,"ZeroLine",ParamColor( "ColorZero", colorBlack ),styleLine);
Plot(Upper,"Upper",ParamColor( "ColorUpper", colorRed ),styleLine);
Plot(Lower,"Lower",ParamColor( "ColorLower", colorGreen ),styleLine);