NexusFi: Find Your Edge


Home Menu

 





Programs that find systems


Discussion in Trading Reviews and Vendors

Updated
      Top Posters
    1. looks_one Timot with 2 posts (0 thanks)
    2. looks_two dryg with 2 posts (0 thanks)
    3. looks_3 Quick Summary with 1 posts (0 thanks)
    4. looks_4 Cloudy with 1 posts (0 thanks)
    1. trending_up 4,102 views
    2. thumb_up 0 thanks given
    3. group 4 followers
    1. forum 5 posts
    2. attach_file 0 attachments




 
Search this Thread

Programs that find systems

  #1 (permalink)
dryg
France
 
Posts: 38 since May 2012
Thanks Given: 5
Thanks Received: 19

I recently discovered that there are some programs that find systems and also write code. I thought the idea was excellent and I downloaded one called Adaptrade. This program runs fine and crashes only occasionally but I wasted two free weeks of testing trying every possible combination of metrics, settings, etc. with no results. The system code would reveal random systems, most with complicated exits based on triangular MAs or functions of ATR that obviously attempted to fit price series. Most, if not 100% of the trading systems involved very simple entries and that alone made me skeptical about this product. This is example code for ES daily futures for a system that had best performance:

 
Code
{ Strategy inputs }
Inputs: NL1 (97),
        NL2 (43),
        NS1 (5),
        TargFrL (2.0242),
        MMStopSz (1490.00),
        NATRTargS (54),
        TargFrS (1.2240),
        PSParam (1.00),
        RoundPS (true),
        RoundTo (1),
        SizeLimit (100);

{ Variables for average true range for entry and exit orders }
Var:    ATRTargS (0);

{ Variables for entry and exit prices }
Var:    TargPrL  (0),
        TargPrS  (0);

{ Variables for entry and exit conditions }
Var:    EntCondL  (false),
        EntCondS  (false);

{ Variables for position sizing }
Var:    NShares  (0);

{ Average true range }
ATRTargS = AvgTrueRange(NATRTargS);

{ Entry and exit conditions }
EntCondL = Volume crosses above Average(Average(Volume, NL1), NL2);
EntCondS = DayOfWeek(date) = NS1;

{ Position sizing calculations }
NShares = PSParam;

If RoundPS and RoundTo > 0 then
   NShares = IntPortion(NShares/RoundTo) * RoundTo;

NShares = MinList(NShares, SizeLimit);

{ Entry orders }
If MarketPosition = 0 and EntCondL then begin
   Buy("EnMark-L") NShares shares next bar at market;
end;

If MarketPosition = 0 and EntCondS then begin
   Sell short("EnMark-S") NShares shares next bar at market;
end;

{ Exit orders, long trades }
If MarketPosition > 0 then begin

   TargPrL = EntryPrice + TargFrL * TrueRange;
   Sell("ExTarg-L") next bar at TargPrL limit;
end;

{ Exit orders, short trades }
If MarketPosition < 0 then begin

   TargPrS = EntryPrice - TargFrS * ATRTargS;
   Buy to cover("ExTarg-S") next bar at TargPrS limit;
end;

SetStopShare;
SetStopLoss(MMStopSz);
Does this make sense to you? Have you tried any other similar products? Is there any value in using them?

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Deepmoney LLM
Elite Quantitative GenAI/LLM
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Exit Strategy
NinjaTrader
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
61 thanks
Funded Trader platforms
39 thanks
Battlestations: Show us your trading desks!
26 thanks
NexusFi site changelog and issues/problem reporting
25 thanks
The Program
17 thanks
  #3 (permalink)
 Timot 
London
 
Posts: 26 since May 2011


I just downloaded Multicharts and Price Action Lab. The latter finds patterns and writes EL code you can use in Multicharts. I have tried it before but I did not have a lot of time to play with it then. I think patterns of this kind have more chances than indicators and data mining bias is decreased a lot since all patterns depend on OHLC only. I think genetic programming is a fancy term for curve-fitting. At least this is the purpose we used it for in college. I have heard that most hedge funds have given up on neural networks and genetic programming and now are using other methods for finding edges. Someone I know who worked for an investment bank before told me that genetic programming was a disaster for them. Maybe some fuzzy logic expert systems are better for this task.

Reply With Quote
  #4 (permalink)
 Cloudy 
desert CA
 
Experience: Intermediate
Platform: NT7, various
Broker: various, TDA
Trading: NQ,ES
Posts: 2,124 since Jul 2011
Thanks Given: 2,396
Thanks Received: 1,748

Interesting to hear that example of hedge funds dropping neural networks and genetic algorithms. Makes me wonder what those in charge of those MFGlobal and JPMorgan overleveraged failed bets based their trades/hedges on. Now all they need to do is to simulate a trader with panic monkey mode and overleveraging and averaging in until margin called haha.

I guess one could make another ol'/new system by using ATR and combining conditions with one or a few of hundreds of varying oscillators, indicators, or MA crosses. Could you backtest the systems your strategy generator came up with dryg?

Visit my NexusFi Trade Journal Reply With Quote
  #5 (permalink)
 Timot 
London
 
Posts: 26 since May 2011

After spending many days and nights testing Adaptrade I was not able to find a single system that after testing profitable in the out of sample, continued to be profitable in paper trading mode. What a waste of time. That software is just a curve-fitting optimizer.

Reply With Quote
  #6 (permalink)
dryg
France
 
Posts: 38 since May 2012
Thanks Given: 5
Thanks Received: 19


Cloudy View Post
Interesting to hear that example of hedge funds dropping neural networks and genetic algorithms. Makes me wonder what those in charge of those MFGlobal and JPMorgan overleveraged failed bets based their trades/hedges on. Now all they need to do is to simulate a trader with panic monkey mode and overleveraging and averaging in until margin called haha.

I guess one could make another ol'/new system by using ATR and combining conditions with one or a few of hundreds of varying oscillators, indicators, or MA crosses. Could you backtest the systems your strategy generator came up with dryg?

I gave up on genetic programming. The results look like permutations of some kind. I am working now towards developing something along the lines of Price Action Lab. Just OHLC patterns with a a couple more indicators.

Reply With Quote




Last Updated on June 12, 2012


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts