rss

How close are you to perfect?

Becoming the perfect trader is no easy task, and I daresay that nobody has been able to achieve this great feat. The perfect trader buys at the absolute low of the day and sells at the absolute high. And depending on whether the high happens first or the low happens first determines if he is long or short for the day. It’s really easy to calculate this metric. It is simply the absolute value of the daily range or the high minus the low.

To get an accurate handle on the concept, we first ask what time frame we will be using. For end-of-day traders or swing traders, the daily bar is your competition. If you day-trade off the five-minute bar, well then use the five-minute bar to gauge your performance.

This concept is used in system trading and because vast amounts of data are typically used, we system traders need to resort to our super-duper calculators, also referred to as our programming language. This is an example of what code looks like for our daily perfect trader. The language is TradersStudio’s version of Visual Basic, but you can get the idea and use it with any program you wish. It’s the basic loop function.

For i = FirstBar to LastBar step 1

Next

PerfectProfit = PerfectProfit + Range [i]

You’ll need to dimension your PerfectProfit variable as an array if you want it to tally up daily ranges. (more…)