MILKING THE COWS

equities live trades, setups, charts

Moderator: moderators

4tradinggreen
rank: <50 posts
rank: <50 posts
Posts: 14
Joined: Mon Nov 10, 2008 1:02 am
Reputation: 0
Location: palm trees & sunshine
Gender: Male
Contact:

Postby 4tradinggreen » Wed Jan 14, 2009 7:55 pm

Most of the cows are still out to pasture today, as of 1:55CST. :)

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Thu Jan 15, 2009 4:57 pm

TOP 20 COWS as of Jan 15, 2009


Image


CME
BIDU
GOOG
ISRG
FSLR
APOL
AMGN
SHLD
AMZN
ESRX
AAPL
GENZ
NTRS
CHRW
SOHU
BIIB
ENER
CELG
CEPH
RIMM
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

4tradinggreen
rank: <50 posts
rank: <50 posts
Posts: 14
Joined: Mon Nov 10, 2008 1:02 am
Reputation: 0
Location: palm trees & sunshine
Gender: Male
Contact:

Postby 4tradinggreen » Thu Jan 15, 2009 10:15 pm

Moo, most of the cows returned to the barn today.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sun Mar 28, 2010 4:10 am

TOP 20 COWS as of March 27, 2010

BIDU
PCLN
GOOG
FSLR
AAPL
WYNN
AMZN
JOYG
ESRX
BUCY
CTRP
ATHR
CREE
SNDA
RIMM
VECO
AMSC
CELG
CAAS
CEPH
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

mkdweed
rank: <50 posts
rank: <50 posts
Posts: 1
Joined: Wed Mar 24, 2010 9:49 am
Reputation: 0
Gender: Male

Postby mkdweed » Sat Jun 19, 2010 4:44 pm

TRO,

I've been studying and paper trading this strategy on ThinkorSwim for the last few week. Since most of the tools for trading this strategy are on TradeStation, can I assume it would be in my best interest to use it with TS once I become reasonably competent with judging price action? In this regard, is the major advantage using TS the equities brokerage service or the tools?

Thanks for your excellent trading contributions.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Postby TheRumpledOne » Sun Jun 20, 2010 4:20 pm

I think someone on www.StockFetcher.com posted the TOS code for milking the cows in the NEVER LOSE AGAIN thread.

TS has the MATRIX for trading which is great for MILKING THE COWS.

If your account is large enough, $25k or more, then you can daytrade. Start with 100 shares. Increase shares after you have mastered the method.
IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
tmanbone
rank: 500+ posts
rank: 500+ posts
Posts: 723
Joined: Sun Nov 15, 2009 3:52 am
Reputation: 3
Gender: Male

Postby tmanbone » Sun Jun 20, 2010 5:20 pm

TOS Buy Zone from www.stockfetcher.com

input m_open = 930;
input m_close = 1555;

input time = 5;

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 + 0.10);
def long_t = (t_open + 0.20);
def short_t = (t_open - 0.10);
def short_b = (t_open - 0.20);

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);
"The simplicity of the markets is it's greatest disguise"

T

Milpower
rank: <50 posts
rank: <50 posts
Posts: 5
Joined: Fri Nov 26, 2010 8:53 am
Reputation: 0
Location: Stockbridge, GA
Gender: Male
Contact:

Postby Milpower » Sat Nov 27, 2010 4:10 pm

Tman! Thank you (and, of course, TRO for the initial foray into this world!) for the TOS info. ONLY took about 30 hours of reading to find this post! :)

Any other studies for TOS? :)

User avatar
tmanbone
rank: 500+ posts
rank: 500+ posts
Posts: 723
Joined: Sun Nov 15, 2009 3:52 am
Reputation: 3
Gender: Male

Postby tmanbone » Sat Nov 27, 2010 4:46 pm

What in particular are you looking for?
"The simplicity of the markets is it's greatest disguise"



T

Milpower
rank: <50 posts
rank: <50 posts
Posts: 5
Joined: Fri Nov 26, 2010 8:53 am
Reputation: 0
Location: Stockbridge, GA
Gender: Male
Contact:

Postby Milpower » Sat Nov 27, 2010 4:59 pm

OMG! Any and all of them. :) I'm so overwhelmed with all this new info. As I mentioned to TRO, it seems pretty overwhelming. BUT, I am getting it! :)

I only trade with TOS right now as I have less than $25k and fall under the PDT rule; however, I've got over $40k purchasing power...so, I'm working on it.

What I want to do is this. PDT my 3 trades each week with ONE stock (gonna do this for at least three months). Make an effort for EACH trade to be profitable, or no more than a .10 loss.

Also, I want to set aside $2-5k into a Forex account and start learning how to trade FX (seems that is where there the money is and will enable me to grow my equity that much quicker).

ANY suggestion, indicators, etc. you have will be amazingly helpful.

And, if it'd be easier, I'm macsgreen on Skype. You talk, I'll write down the info. :)

Thank you in advance for your assistance.

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “equities”