Arthur Deco Mentors ET Noobs

Arthur, whether or not you've already died, please answer my question:

Less than a year into trading CL, I've been reduced to trading off a 1-min chart and cross-referencing a 10-tick chart. Being a strong believer in Kurzweil's theories, I fear that I may, in the not-too-distant-future, be reduced to trading off a 10-tick chart and cross-referencing a 1-tick chart. Then what?
 
Mr Deco, thanks for your input a while back on how to tell if 2 strategies are related. From yours and others posts, I coded a tool that has been very useful to me.

My next question, if I may be so fortunate that you might choose to answer this humble noob's question: how do you know when to switch between a large limit-small stop-low win ratio strategy and a small limit-large stop-high win ratio strategy?

Thanks, and hope things go well for you
 
Quote from bearmountain:

you crazy fak, you will probably out live us all.

Please share with us how long you traded before you turned profitable? what made the turn around possible for you?

Looking back when you started, what would you do differently? Thanks.

I position traded profitably in the late 90's. I know, I know, EVERYBODY was a genius then. After the crash I started swing trading. A disaster. Then about '01 I started trading futures. It is truly amazing how smart I thought I was and how much money I lost. But no more than the average schmuck spends on a hobby. I turned the corner close to two years ago. I got religion. I was saved. Backtested system trading. Am I rich? I'm posting here, aren't I? Deeply ingrained (ingrown?) loser habits die hard.
 
Quote from joe4422:

Let's have an answer to the real question first. Over all your years of trading, have you made money?

You are so cruel! Over 44 years of investing and position trading? Indubitably ah does make money. But futures trading? I may not live long enough to break even. But, shit! If not trading I would have pissed it away on other things. Slow horses and fast women. I started position trading again two years ago and have done well. Big profits watching the price of high dividend stocks rise. That game is over, now it's resource stocks. I know, I know, it's genius time again.
 
Quote from ElectricSavant:

1,793 posts since 2004....I remember you as Arthur Deco. I want to say that your colorful posts will be missed by me and I hope you have some years left. I regret to not meeting you personally or at least talking to you on the phone...but that gets way to personal for most and I understand that. Its just that your anonymous character seems like someone I would like to know personally...isn't it ironic that one anonymous character wants to meet another anonymous character? or maybe not?

My problem is rather simple that many have overcome just by having a plan in place. I know when to enter a trade...but oh I struggle on when to get out...

I question:

How much does my plan leave on the table?....

If I re-enter the same trade after exiting that is such a waste isn't it?....-

Should I keep trading after a nice profit or should I wait for the market to trade itself out to a new level?

When should I stop trading for the session? Because I know the more risk I expose myself to...is more risk overall. But the market does not know my condition and if I have an edge surley backtesting should help...but I am not a backtester.

Should I backtest?

What is the meaning of life? (I believe it is pain)

ES

P.S. AD..I expect something from you in code that I can ponder for the months to come and then I will get the AhHa moment when I understand what you post...sometimes I never get it...but at least give me one more thing to chew on before you leave. By the way I hope it is painless and in your sleep...I do not know you but this is the only good thing that I can think of to wish upon you..Rest good my friend.

P.P.S. I can always count on a thread like this NEVER to give that "sounds good.. post of advice". This could be the greatest thread in ET for some...maybe not... we shall see.

P.P.P.S. May I get reduced to an ameba sending me cowaring in the corner...could be the best thing that could happen to me...I feel like I am coming back to trading profitably...but I am teetering on a line of reversing back to a senile old idiot that only dreamed of being profitable. Will I be scared of looking at another chart again?...will I withdraw deep into failure?...or or do I carry on in denial?...do I need to face it?...I can't trade? or... or...or....(studdering again sorry...)

P.P.P.P.P.P.P.P.P.P.P.P.P.P.S. (edited by a moderator...)

This persona is just one in a long string of handle changes to evade embarassment. I have actually been here since '01, I think. I should think that it would be patently obvious that in person I am unbearably obnoxious. Most old people are.

The answer to all of your questions is simple. Yes, you should learn to backtest. Never trade unless you know the setup is relatively stable over time. Always know the stop loss and honor it. Take the system profit with no regrets if it goes higher. Know everything about the sadistical behavior of the system. Have a morning system that might run all day, and have an afternoon system for reversal days. And know how to identify range bound days before they become range bound. Easy, yes?

You want code? You can't handle code!

A money maker on a daily chart:

//deadbandonedayhelperRevA
var alpha=.04;
var filtonlow;var filtonhigh;
function preMain()
{setPriceStudy(false);setPlotType(PLOTTYPE_SQUAREWAVE);setDefaultBarBgColor(Color.RGB(255,165,0));//orange
setComputeOnClose(true);
}
function main()
{
if (filtonlow==null) {filtonlow=low();filtonhigh=high();}
filtonlow=((1-alpha)*filtonlow)+(alpha*low()); filtonhigh=((1-alpha)*filtonhigh)+(alpha*high());
if(high()<filtonhigh && low()<filtonlow){setBarBgColor(Color.red);}
if(low()>filtonlow && high()>filtonhigh){setBarBgColor(Color.lime);}
return;
}
 
pardon my ignorance..can someone tell me if this is TradeStation code? I wonder if he runs this on the ES?

oh well... I guess that is for me to find out!

ElectricSpoonFedSavant


You want code? You can't handle code!

A money maker on a daily chart:
 
Quote from ElectricSavant:

pardon my ignorance..can someone tell me if this is TradeStation code? I wonder if he runs this on the ES?

ES


You want code? You can't handle code!

A money maker on a daily chart:

I think it is eSignal code.
 
Chances are that a good trader is busy making money and not mentoring for money.

The only qualification I would want my mentor to have, is an audited return, but if one does and it is good...read above.

You can't ask for qualifications if someone mentors for free. Probably you'll get a failed trader, but is the mentorship going to help you because it is free ?

Elite Trader is an entertaing place, or a place to waste some time, but even online rules still apply. There is no free lunch. EVER.
 
Back
Top