Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Telegram!
und werden Sie Mitglied unserer Fangruppe
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Bewerten Sie es im Terminal MetaTrader 5
- Ansichten:
- 24409
- Rating:
- Veröffentlicht:
- 2012.05.25 09:31
- Aktualisiert:
- 2016.11.22 07:32
-
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance
Expert advisor based on Bollinger bands and Rsi. Modified trailing stop system.
Inputs:
- extern double Lots = 0.01; // lot size
- extern double MinPipsProfit = 30; // when does the trailling stop start ( +30 pips above open price )
- extern double Ea_StopLoss = 70;
- extern double Ea_Trailing_Stop = 35;
- extern int Slippage = 3;
- extern int RsiH = 90; // sell if bollinger band high and and rsi>90
- extern int RsiL = 10; // buy if bollinger band low and and rsi<10
- extern int RsiPeriod = 8;
- extern int Magic=686;
This indicator is the first version so please be gentle :p
Let me know if you find some bugs.
If you use 5 digits broker multiply MinPipsProfit, Ea_StopLoss and Ea_Trailing_Stop by 10.

The new idea of the classical Bears Bulls Indicator.

EA based on MAC-Fibo trading strategy

Displays open position: Profit or Loss + Lots Long or Short + Pips or Points

Automatically does volume calculation based on percentage of desired account balance and enters instant or pending trades. Optional take profit is automatically at 1:1 with respect to SL.