Search found 3 matches
All the thanks goes to you TRO for posting about this trading method and being so generous in helping other traders. I don't think this Cow AFL will have much effect on stockfetcher's business. From the relatively small amount of posts here about Amibroker, it doesn't seem to be a tremendously popul...
Cow AFL
Below is an AFL for finding the best cows to milk. It's for use on Yahoo end-of-day data. The statistical computations in the AFL are translated from TRO's stockfetcher code. You can also use this AFL for backetesting. Hope someone finds it useful. /**********************************/ // Daily Gaps ...
- Fri Jun 23, 2006 2:40 am
- Forum: Tradestation indicators
- Topic: Backtesting the Middle Indicator
- Replies: 1
- Views: 3685
- Gender:

Backtesting the Middle Indicator
Isn't it possible to do backtesting with the middle indicator? For example, I created the following system for Amibroker: Average_Close_Old = Ref(H,-1)+Ref(L,-1); Average_Close_New = H+L; Buy = Average_Close_New > Average_Close_Old; Sell = Average_Close_New < Average_Close_Old; Short = Average_Close...