I have a non-optimized system in TradeStation that generated a smooth equity curve right off the bat.
The core trading logic is very simple:
If ConditionX then begin
Buynext bar at BuyPrice limit ;
SellShort next bar at SellPrice limit ;
End;
Based on the following characteristics, I'm wondering whether the system would be a good candidate for automated execution, either directly with TS or w/ signals routed elsewhere (IB or wherever):
* Trades equities w/ tick-based bars
* Stop-and-reverse (always in the market)
* Average trade duration 12-16 bars, or about 9 minutes
* 30-100 trades per day
I could do a live run of course, but I'd prefer to go into it knowing more than I do now about the potential pitfalls. Any thoughts appreciated.
The core trading logic is very simple:
If ConditionX then begin
Buynext bar at BuyPrice limit ;
SellShort next bar at SellPrice limit ;
End;
Based on the following characteristics, I'm wondering whether the system would be a good candidate for automated execution, either directly with TS or w/ signals routed elsewhere (IB or wherever):
* Trades equities w/ tick-based bars
* Stop-and-reverse (always in the market)
* Average trade duration 12-16 bars, or about 9 minutes
* 30-100 trades per day
I could do a live run of course, but I'd prefer to go into it knowing more than I do now about the potential pitfalls. Any thoughts appreciated.