JCastellon 26 posts msg #74623 - Ignore JCastellon |
5/20/2009 10:09:53 PM
TRO do you have a chat your in intraday?
|
stratiG 147 posts msg #74632 - Ignore stratiG |
5/21/2009 9:18:03 AM
test
|
JCastellon 26 posts msg #74634 - Ignore JCastellon |
5/21/2009 9:45:38 AM
wow already up $1 on the same old boring $AAPL, my life is so boring
thanks again TRO!
|
stratiG 147 posts msg #74637 - Ignore stratiG |
5/21/2009 9:59:02 AM
3 trades this morning; winner, loser and big winner. I'm out.
|
stratiG 147 posts msg #74639 - Ignore stratiG |
5/21/2009 11:15:00 AM
A HL in the buyzone and a complete collapse. That's what you learn by trading/watching the same chart day after day after day.
My banker doesn't think I am boring. LOL!!!!
|
JCastellon 26 posts msg #74645 - Ignore JCastellon |
5/21/2009 2:10:57 PM
nice job, im working on an ATS for buyzone on ninja if your interested lmk
|
JCastellon 26 posts msg #74647 - Ignore JCastellon |
5/21/2009 4:40:02 PM
this is what i have so far on the TOS strategies, the results are pretty good even tho TOS blows for strats (cant scale out, no trailing stop, nothing)... just to get a basic idea... each of the futures are 1 contract ($500 for some brokers) and AAPL is 100 shares while PRU is 1k.... like i said, TOS blows for strategies.. im trying to implement this on ninja (which is 10000000000000x better than tos for strategies) so the results will be alot better and precise when i finish.... btw for stocks its 0.10 buyzone with $1 target, /es is .5 buyzone with 10 pt target, and i think it was .001 buyzone with 100 tick gain for currencies i dont remember... let me know what u think
http://i42.tinypic.com/11jaxx4.jpg
http://i44.tinypic.com/rvez2s.jpg
http://i40.tinypic.com/28up7qo.jpg
http://i41.tinypic.com/2s1amp0.jpg
http://i39.tinypic.com/4sgx9i.jpg
|
dee8888 8 posts msg #74648 - Ignore dee8888 |
5/21/2009 5:10:15 PM
Tro,
Which brokers supports "BZ line" programming in charts? What would your recommendation be? What cost?
I understand the system and may not need the lines on the chart, but openings are usually very hectic and I would rather have the charts.
I currently use Scottrade.
|
JCastellon 26 posts msg #74650 - Ignore JCastellon |
5/21/2009 6:31:53 PM
you can use TOS' platform (free to open an acct just dont fund it and use the papertrade acct)
heres the study for TOS, just change the buzone increment to 0.10
input m_open = 930;
input m_close = 1555;
input buyzone_increment=0.5;
def bz=buyzone_increment;
def time=getAggregationPeriod()/60000.0;
rec t_open = if(secondsTillTime(m_open) == 0, open, t_open[1]);
rec p_high = if(secondsTillTime(m_close) == 0, Highest(high, ((390 / time))), p_high[1]);
rec p_low = if(secondsTillTime(m_close) == 0, Lowest(low, ((390 / time))), p_low[1]);
rec p_close = if(secondsTillTime(m_close) == 0, close, p_close[1]);
def long_b = (t_open + bz);
def long_t = (t_open + 2*bz);
def short_t = (t_open - bz);
def short_b = (t_open - 2*bz);
plot highest = if(p_high == 0, double.nan, p_high);
highest.SetDefaultColor(color.pink);
plot lowest = if(p_low == 0, double.nan, p_low);
lowest.SetDefaultColor(color.light_red);
plot y_close = if(p_close == 0, double.nan, p_close);
y_close.SetDefaultColor(color.dark_gray);
plot td_open = if(t_open == 0, double.nan, t_open);
td_open.SetDefaultColor(color.white);
plot long1 = long_b;
long1.SetDefaultColor(color.blue);
plot long2 = long_t;
long2.SetDefaultColor(color.blue);
plot short1 = short_t;
short1.SetDefaultColor(color.red);
plot short2 = short_b;
short2.SetDefaultColor(color.red);
|
JCastellon 26 posts msg #74657 - Ignore JCastellon modified |
5/22/2009 2:29:10 AM
25+ pts on /es
|