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;
}