Quote from marketsurfer:
Sure, I would have one of my quant friends test it. I don't have direct access to the data bases needed for proper testing. surf
Ps. Don't worry, they are academics with no interest in stealing your one objective pattern. LOL!
Print this and give it to one of your quants who has a platform that has real time data flow.
By the way, what platform do you lease, if any?
Code this:
Enter on bar 3 of accelerating volume bars when acceleration = True. Count bars from the first bar after an end of a trend.
Exit at BE on bar 3 or end of bar 3 when above BE.
This is the PP1 trade of SCT based upon the PEP algorithm.
On my platform the bar ID's are:
bar 1 is volume.2
bar 2 is volume.1
bar 3 is volume
To write the acceleration formula you would type:
Acceleration = True when { (1 + (volume.1 -volume.2)) - volume } is positive.
This TA involves the use of Arithmetic and three information values.
As each trade is done with initial capital and beginning with 1 contract.. Profits are reinvested up to 5 times the given market capacity. All orders are market orders that may not exceed the blocks being traded nor exceed more than 10% of the day's cummulative volume. This means you will not sway the market in any way.
Your programmer will say several things to you. Go along with him and let him do his best.