Tradestation Handelssystem COMPX | |
Hallo,
ich habe noch nicht sehr viel Erfahrung beim Erstellen von Handelssystemen. Habe ein System für den NASDAQ zusammengestellt und wollte mal diejenigen, die sich schon etwas länger mit der Materie beschäftigen, fragen was sie davon halten. Für Tipps und Anregungen wäre ich dankbar!
Hier das System in Easy Language:
Long Entry Signal:
Inputs: AvgLen1(14), AvgLen2(20) ; Variables: FastAvg(0), SlowAvg(0); FastAvg = Average(Close, AvgLen1); SlowAvg = Average(Close, AvgLen2); if fastavg crosses above slowavg then buy next bar open ;
Long Exit1 Signal:
Inputs: AvgLen1(11), AvgLen2(20) ; Variables: FastAvg(0), SlowAvg(0); FastAvg = Average(Close, AvgLen1); SlowAvg = Average(Close, AvgLen2); if fastavg crosses under slowavg then exitlong next bar open ;
Long Exit2 Signal:
inputs : ADXVal(10) ; condition1 = AD14)[1] < ADXVal ; condition2 = AD14) > ADXVal ; if condition1 and condition2 then exitlong next bar open ;
Vielen Dank schon mal im Vorraus!
Marcus
|