Arthur Deco Mentors ET Noobs

I coded this up and its v similiar to an EMA. Backtested on the daily charts using my interpretation of the signals. first backtest didnt really show this had an edge. any ideas ?



Quote from Arthur Deco:

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;
}
 
This IS the definition of an EMA. Using an EMA on the lows and another on the highs reduces whiplash. Both are very close to the 50 EMA used by many institutional investors. I use this to identify support for scaling into long position trades and investments. And for ditching weakening positions. It is not good for in-and-out, as your testing showed. Attached are examples. Good for quick estimation of market conditions.
 

Attachments

such clean charts....cracking !!




Quote from Joe Doaks:

This IS the definition of an EMA. Using an EMA on the lows and another on the highs reduces whiplash. Both are very close to the 50 EMA used by many institutional investors. I use this to identify support for scaling into long position trades and investments. And for ditching weakening positions. It is not good for in-and-out, as your testing showed. Attached are examples. Good for quick estimation of market conditions.
 
Quote from Joe Doaks:

This IS the definition of an EMA. Using an EMA on the lows and another on the highs reduces whiplash. Both are very close to the 50 EMA used by many institutional investors. I use this to identify support for scaling into long position trades and investments. And for ditching weakening positions. It is not good for in-and-out, as your testing showed. Attached are examples. Good for quick estimation of market conditions.

scaling in.. I read another on of your posts that scaling in always reduces expectancy. could you clarify.
 
Sorry to hear that.

Answering your question, I don't think either the goody two shoes nor the psycho would help. Ideal would be somewhere in between.
 
Quote from Arthur Deco:

I am doing my best to change my image from curmudgeon to kindly abuelo. Failing that, I will start over with a new alias.
Anyone knows if Arthur Deco is still posting under a different name?
 
Back
Top