Arthur Deco Mentors ET Noobs

Quote from HuggieBear:

what are you dieing from anyway or is it just simple old age that is getting the best of you

he may be suffering from extreme boredom. something a sharp 10% market plunge may cure.
 
Quote from HuggieBear:

what are you dieing from anyway or is it just simple old age that is getting the best of you

Mostly from embarrassment that for over thirty years I desperately wanted to trade full time, and now I find that I don't like it much. But the actuarial tables are catching up with me. When I hit 67 they say my life expectancy is 15.5 years and my probability of death is 1.3%. With those odds I might as well take up sky diving.
 
Quote from ElectricSavant:

you have your PM turned off...How does one reach you?

eThay estbay ayway otay ommunicatecay ithway imhay ivatelypray ouldway ebay ikelay isthay.
 
Quote from LEAPup:

I'm Italian:

Mettere l'alcool giù Arthur. E ti ucciderà.

Babelfish translated that from Louisiana Cajun French into Standard English as

"All of Metarie say you be cool, Arthur! But ET will give you acid udder!"
 
Quote from Arthur Deco:

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;
} [/B]

I see you're throwing out all the code you don't intend on taking to the grave with you.
 
Back
Top