如果你还没有来得及下载, 请email我 biorjin@yahoo.com 我可以给你一份打包下载的东西
从今天开始,我会把我的一些backbone 系统陆续放上来
Tuesday, August 18, 2009
Sunday, August 16, 2009
Intraday swing trade 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
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
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);
Subscribe to:
Posts (Atom)