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,529 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
|
JCastellon 26 posts msg #74691 - Ignore JCastellon |
5/22/2009 7:27:29 PM
there you go, any questions dont hesitate to ask
|
dee8888 8 posts msg #74698 - Ignore dee8888 |
5/24/2009 9:54:53 AM
Does TOS have the ability to provide historical intraday data analysis (similar to stock fetchers)?
If not, which programs do?
I'm interested in analyzing first half hour trading patterns in detail.
|
TheRumpledOne 6,529 posts msg #74719 - Ignore TheRumpledOne |
5/25/2009 7:49:26 PM
Hola from Cabo San Lucas, Mexico.
Market is closed today.
|
johnpaulca 12,036 posts msg #74720 - Ignore johnpaulca |
5/25/2009 9:24:51 PM
This is what I am talking about !!!!! nice
|