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
|
stratiG 147 posts msg #74669 - Ignore stratiG modified |
5/22/2009 9:59:53 AM
TRO,
I added Long Target and Short Target to your indicator. Now this is really for dumbies.
|
TheRumpledOne 6,411 posts msg #74678 - Ignore TheRumpledOne modified |
5/22/2009 11:04:56 AM
Now why would you want to add targets to this?
Why are you guys fooling around with the boring trading method?
Wouldn't you rather have a bunch of SQUIGGLY LINES all over the charts?
You have to admit those SQUIGGLYS do look pretty cool.
HORIZONTAL LINES ARE BORING!!
Besides, isn't it more fun to spend your time trying to find the next hot stock.
Come on, write more filters using SQUIGGLY LINE indicators.
|
dee8888 8 posts msg #74685 - Ignore dee8888 modified |
5/22/2009 3:26:16 PM
To: JCastellon
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 ..........
__________________________________________________________________________________________________
I signed up and installed it.
Have not yet found where to install this.
Maybe you could save me a little research time?
Its giving me a choice of prophet charts, or flexible grid charts. So far its confusing.
Nothing under user defined studies
|
cr0cop 87 posts msg #74686 - Ignore cr0cop |
5/22/2009 3:46:14 PM
if you want to add the script to TOS just go to 'EDIT STUDIES'/'NEW STUDY' that is where you put it and save it, then you will find it under the 'studies' menu
|