Hi Igorad,
I like your EA, but I noticed one thing: this EA does not see any of the positions which were opened by another EA, but it does see positions which I opened by myself. Why?
Printable View
Hi Igorad,
I like your EA, but I noticed one thing: this EA does not see any of the positions which were opened by another EA, but it does see positions which I opened by myself. Why?
I am not sure exactly but mau be - magic number? I mean: when you/I open any trader by ourselcves so we are openning this trade without Magic (this Ea is having Magic parameter in the settings). But if the trade is opened by some other EA so other EA may place the magic number but our EA is having Magic = 0 by default ...
But I am not sure sorry ...
Hey Igor, Just a quick question, Will there ever be a Manual Trader EA that uses some of your indicators for trade exits?
Thanks
Hey Igor, If I had to choose it would be AllTrendEnvelopes , It follows price the best when set to the next higher time frame and will resist false exits
or you could use two simultaneously for more confirmation, like AllAbsoluteStrengthTrend _v1 or AdvancedParabolic_v2, when both indicators confirm you bailout
In any case it would save a lot of on screen time and allow you to at-lest grab some of those late-nite trades.
Igor I'd like to take this moment and Thank you for all the great work you've done here, Well Done!
Thanks Steam1
Hi steam1,
Please check out the ManualTrader_v1.4 with ability to close trades by AllTrendEnvelopes_v2(ExMode = 1) and to trail stop(TrailingMode = 2).
Attachment 3227Code://---- input parameters
extern string Expert_Name = "ManualTrader_v1.4";
extern int Magic = 0; // Magic Number
extern int Slippage = 3;
extern string slInputs = "===== StopLoss settings: =====";
extern double RiskFactor = 0; // Risk Factor(in %) for StopLoss calculation
extern double StopLoss = 50; // StopLoss in pips
extern int HideStopLoss = 0; // Hidden StopLoss in pips
extern string tpInputs = "===== TakeProfit settings: =====";
extern double TakeProfit = 100; // TakeProfit in pips
extern string trInputs = "===== Trailing Stop & Breakeven settings: =====";
extern int TrailingMode = 0; // Trailing Stop Mode: 0-off,1-in pips,2-by Up/DownTrend Stop
extern double TrailStop = 15; // Trailing Stop in pips
extern double TrailStopStep = 15; // Trailing Stop Step in pips
extern double BreakEven = 50; // Breakeven in pips
extern double PipsLockIn = 5; // Profit Lock in pips if Breakeven is achieved
extern string pcInputs = "===== Partial Close settings: =====";
extern double PartCloseTgt = 50; // Partial Close Target in pips
extern double PartClosePct = 50.0; // Partial Close Position Percent
extern string exInputs = "===== AllTrenEnvelpes Exit settings: =====";
extern int exTimeFrame = 0; // TimeFrame in min
extern int exUpPrice = 2; // Upper Price = 0...10 (see List of Prices)
extern int exLoPrice = 3; // Lower Price = 0...10 (see List of Prices)
extern int exBandPeriod = 10; // Bands Period
extern int exBandMethod = 0; // Band MAs Method = 0...26 (see List of MAs)
extern double exBandDeviation = 0.0; // Bands Deviation in %
extern int exShift = 1; // 0-current bar,1-previous closed bar
extern int exMode = 1; // Exit Mode: 0-off
extern string adInputs = "===== Additional settings: =====";
extern int DebugMode = 1; // Switch of Debug mode (0-off;1-on)
extern int CommentMode = 1; // 0-Comment off,1-on
extern int ECN_Mode = 1; // 0-off,1-on(will modify Stoploss and TakeProfit)
extern int DrawTarget = 1; // 0-off,1-on
extern string forTest = "===== Settings for Testing: =====";
extern double Lots = 1; // Trade Volume
extern int MA_period = 5; // MA period
extern int MA_mode = 0; // MA mode
Regards,
Igor
Awesome! Will test and post some trades, You are the man!
Thanks Igor