Spezifikation
ENGLISH and GERMAN
ENGLISH
i need an EA that uses trades based on a modified RSI Past crossings of the RSI with 30/70 must be readable to be able to use the high/low point for stops and trade entry at the respective time. The goal is to automatically adjust positively developed trades with a trailing stop and pyramidization also based on the indicator.
modified RSI
source = (high+low+close)/3
rsibasic = rsi(source, 3)
ma = simple moving average(rsibasic, 5)
rsiwaves = rsi(ma, 2)
It should be possible to define if the EA should go short or long. As long as a trade with profit goes in one direction, the EA enters with further trades in the same direction. It is also important to risk 1% risk of the available capital for each trade.
It is also necessary that the EA can be applied in every market without any problems. Also means that if the price has 5, 4, 3 or only 2 decimal places, it is no problem to apply the 1% rule. If the lot number is less than the minimum, an error message must be displayed and no trade with the minimum lot number.
GERMAN
Lieber Entwickler,
ich brauche einen EA, der die Trades anhand eines modifizierten RSI nutzt. Vergangene Kreuzungen des RSI mit 30/70 müssen ausgelesen werden können, um zum jeweiligen Zeitpunkt den Hoch-/Tiefpunkt für Stops und Tradeeinstieg nutzen zu können. Ziel ist es positiv entwickelte Trades mit einem Trailingstop und Pyramidisierung ebenfalls anhand des Indikators automatisch anzupassen.
modifizierter RSI
source = (high+low+close)/3
rsibasic = rsi(source, 3)
ma = simple moving average(rsibasic, 5)
rsiwaves = rsi(ma, 2)
Man sollte definieren können, ob der EA nur short oder long gehen soll. Solange ein Trade mit Gewinn in eine Richtung geht, steigt der EA
mit weiteren Trades in dieselbe Richtung ein. Ebenfalls ist es wichtig 1% Risiko vom verfügbaren Kapital für jeden Trade zu riskieren.
Ebenfalls ist notwendig, dass der EA problemlos in jedem Markt anwendbar ist. Bedeutet auch, dass wenn der Kurs 5, 4, 3 oder nur 2
Nachkommastellen hat, es kein Problem ist die 1% Regel anzuwenden. Ist die Lotzahl geringer als das Minimum, muss eine Fehlermeldung
kommen und kein Trade mit der minimum Lotzahl.