Page 3 of 9 FirstFirst 1 2 3 4 5 ... LastLast
Results 21 to 30 of 88
Like Tree33Likes

ManualTrader EA

This is a discussion on ManualTrader EA within the Trading tools forums, part of the Trading Forum category; Hi Igorad, I like your EA, but I noticed one thing: this EA does not see any of the positions ...

      
   
  1. #21
    Junior Member
    Join Date
    Oct 2013
    Location
    A, A
    Posts
    2
    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?

  2. #22
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,474
    Blog Entries
    2911
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by aim1966 View Post
    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 ...
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  3. #23
    igorad
    Guest
    Quote Originally Posted by aim1966 View Post
    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?
    Hi aim1966,

    ManualTrader works with orders opened manually(Magic=0) or with orders opened by another EA(script) with the same Magic Number and the same symbol.

    Regards,
    Igor
    chartartist likes this.

  4. #24
    Junior Member
    Join Date
    Oct 2013
    Location
    A, A
    Posts
    2
    Quote Originally Posted by igorad View Post
    Hi aim1966,

    ManualTrader works with orders opened manually(Magic=0) or with orders opened by another EA(script) with the same Magic Number and the same symbol.

    Regards,
    Igor
    Hi Igorad,

    Thank you for your response. I have changed the Magic Number in my EA to 0 before EA opened a short position. Unfortunately, ManualTrader did not react. At the same time it reacted on 2 other positions which I opened manually. Any ideas?

    Regards,

    Igor

  5. #25
    Junior Member
    Join Date
    Sep 2013
    Posts
    28
    Hey Igor, Just a quick question, Will there ever be a Manual Trader EA that uses some of your indicators for trade exits?
    Thanks

  6. #26
    igorad
    Guest
    Quote Originally Posted by steam1 View Post
    Hey Igor, Just a quick question, Will there ever be a Manual Trader EA that uses some of your indicators for trade exits?
    Thanks
    Hi steam1,

    Please give me an idea which indicator you want to use for the trade exits.

    Regards,
    Igor

  7. #27
    Junior Member
    Join Date
    Sep 2013
    Posts
    28
    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

  8. #28
    igorad
    Guest
    Quote Originally Posted by steam1 View Post
    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).

    Code:
    //---- 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
    Attachment 3227

    Regards,
    Igor
    Alex-162, newdigital and mntiwana like this.

  9. #29
    Junior Member
    Join Date
    Sep 2013
    Posts
    28
    Awesome! Will test and post some trades, You are the man!
    Thanks Igor

  10. #30
    Junior Member
    Join Date
    Sep 2013
    Posts
    4
    Quote Originally Posted by aim1966 View Post
    Hi Igorad,

    Thank you for your response. I have changed the Magic Number in my EA to 0 before EA opened a short position. Unfortunately, ManualTrader did not react. At the same time it reacted on 2 other positions which I opened manually. Any ideas?

    Regards,

    Igor

    u have to change magic number on ur EA and Manual Trader to a greater number than 0 and both numbers have to be the same

Page 3 of 9 FirstFirst 1 2 3 4 5 ... LastLast

LinkBacks (?)


Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •