Page 2 of 7 FirstFirst 1 2 3 4 ... LastLast
Results 11 to 20 of 62
Like Tree23Likes

VoltyChannel_Stop

This is a discussion on VoltyChannel_Stop within the Trading tools forums, part of the Trading Forum category; Originally Posted by pixiehouse Hi Igor. Sorry but I've downloaded the above file(s) and placed them in the correct folder, ...

      
   
  1. #11
    igorad
    Guest
    Quote Originally Posted by pixiehouse View Post
    Hi Igor.

    Sorry but I've downloaded the above file(s) and placed them in the correct folder, but I can't see/add them. What do I do wrong? Do I have to compile them first, or...?

    Pixie
    Hi Pixie,

    Sure you should compile them first.

    Regards,
    Igor

  2. #12
    Junior Member
    Join Date
    May 2014
    Posts
    16
    Quote Originally Posted by igorad View Post
    Hi msepn77,


    Important Note. VoltyChannel_Stop_v6.3 is for the new MT4(build 600 and above).

    Regards,
    Igor

    Hi Igor / newdigital;

    Is there an EA for this indicator?

    Thanking you in anticipation!

    Regards,
    Mony

  3. #13
    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
    Not yet.
    I just remember very old EA based on old version of this indicator, I tested it and found that one indicator may not be enough for the system (too many false signals in case of one indicator, so we needed some more different indicator to work together to filter false signals). It is what I remember (it was few years ago).
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  4. #14
    Junior Member
    Join Date
    May 2014
    Posts
    16
    Hi newdigital,

    Thanks for the quick response!

    I was wondering if there was an EA for this VoltyChannel_Stop_v6.3 600+ indicator which would work on latest MT4 just so I could run this on larger timeframes (where noise is not a big issue) ; could you please post one ?

    Thanks a lot!

    Best Regards,
    Mony

  5. #15
    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
    it was not created yet.
    We need to ask Igorad (i may ask)
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  6. #16
    Junior Member
    Join Date
    May 2014
    Posts
    16
    Thanks so much for such a nice gesture!

    Awaiting your post!

    Best Regards,
    Mony

  7. #17
    Junior Member
    Join Date
    May 2014
    Posts
    16
    Hi newdigital,

    Any news?
    Thanks...


    Best Regards,
    Mony

  8. #18
    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
    Igorad is busy with some other requests so he will code it when he will have some free time.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  9. #19
    Junior Member
    Join Date
    May 2014
    Posts
    16
    Okay, Great!
    & I' ll Wait!

    Regards,
    Mony

  10. #20
    igorad
    Guest
    Quote Originally Posted by Mony View Post
    Hi newdigital,

    Thanks for the quick response!

    I was wondering if there was an EA for this VoltyChannel_Stop_v6.3 600+ indicator which would work on latest MT4 just so I could run this on larger timeframes (where noise is not a big issue) ; could you please post one ?

    Thanks a lot!

    Best Regards,
    Mony

    Hi Mony,

    Please check out the requested VoltyChannelStopTrader EA which is based on the VoltyChannel_Stop_v6.3 indicator.

    Code:
    //---- input parameters
    extern string     Expert_Name          = " VoltyChannelStopTrader_v1.0 600+";
    
    extern int        Magic                =  1010;    // Magic Number
    extern int        Slippage             =     3;    // Slipage in pips
    
    extern string     slInputs             = "===== StopLoss settings: =====";
    extern int        StopLossMode         =     2;    // StopLoss Mode:0-off,1-in pips,2-by VoltyChannelStop,3-in % of Price
    extern double     StopLoss             =     0;    // StopLoss (in pips or %) 
    extern int        HideStopLoss         =     0;    // Hidden StopLoss in pips 
    
    extern string     tpInputs             = "===== TakeProfit settings: =====";   
    extern int        TakeProfitMode       =     0;    // TakeProfit Mode:0-off,1-in pips,2-in % of Price
    extern double     TakeProfit           =   100;    // TakeProfit (in pips or %) 
    
    extern string     trInputs             = "===== Trailing Stop & Breakeven settings: =====";  
    extern int        TrailingMode         =     2;    // Trailing Stop Mode: 0-off,1-in pips,2-by VoltyChannelStop
    extern double     TrailStop            =     0;    // Trailing Stop in pips
    extern double     TrailStopStep        =     0;    // Trailing Stop Step in pips
    extern double     BreakEven            =     0;    // Breakeven in pips  
    extern double     PipsLockIn           =     0;    // Profit Lock in pips if Breakeven is achieved 
    
    extern string     ptcInputs            = "===== Partial Close settings: =====";
    extern double     PartCloseTgt         =     0;    // Partial Close Target in pips
    extern double     PartClosePct         =     0;    // Partial Close Position Percent
    
    extern string     Time_Inputs          = "===== Timing settings: =====";
    extern int        MainTimeFrame        =     0;    // Time Frame in min(0-current,-1-each tick mode)
    extern int        TimeFilterMode       =     0;    // Time Filter Mode:0-off,1-on
    extern int        StartHour            =     0;    // Start Hour of Trade Session 
    extern int        StartMinute          =     0;    // Start Minute of Trade Session 
    extern int        EndHour              =    23;    // End Hour of Trade Session
    extern int        EndMinute            =    59;    // End Hour of Trade Session
    extern int        MonStartHour         =     0;    // Monday Start Hour of Trade Session 
    extern int        MonStartMinute       =     0;    // Monday Start Minute of Trade Session 
    extern int        FriEndHour           =    22;    // Friday End Hour of Trade Session
    extern int        FriEndMinute         =    59;    // Friday End Hour of Trade Session
    extern int        TradeDay             =    -1;    // Trade Day of Week (ex.1-Monday,-1-all Days)
    extern int        NonTradeDay          =     0;    // Non-Trading Day of Week (ex.5-Friday)
    
    extern string     vcsInputs            = "===== VoltyChannelStop settings: =====";
    extern int        vcsTimeFrame         =     0;    // TimeFrame in min
    extern int        vcsUpBandPrice       =     0;    // Upper Band Price(ex.2 for High)     
    extern int        vcsLoBandPrice       =     0;    // Lower Band Price(ex.3 for Low) 
    extern int        vcsBreakOutMode      =     0;    // Breakout Mode:0-by Close,1-by Up/Lo Band Price,2-by Up/Lo MA(Length,MA_Mode) 
    extern int        vcsLength            =     1;    // MA Period
    extern int        vcsMA_Mode           =     0;    // MA Method(see list above)
    extern int        vcsATR_Length        =    10;    // ATR's Period
    extern double     vcsMultiplier        =     3;    // Volatility Multiplier   
    extern double     vcsRatchet           =   0.0;    // Ratchet(-1-off,>= 0-on) 
    extern double     vcsMoneyRisk         =  1.00;    // Offset Factor(eg.1.2)
    extern int        vcsShift             =     1;    // VoltyChannelStop Shift:0-current bar,1-previous bar 
    extern int        vcsMode              =     1;    // Entry Mode: 0-off,1-on
    extern int        vcsExitMode          =     1;    // Exit Mode: 0-off,1-on
    
    extern string     addInputs            = "===== Additional settings: =====";   
    extern int        DebugMode            =     1;    // Debug mode:0-off;1-on 
    extern int        CommentMode          =     1;    // Comment Mode:0-off,1-on 
    extern int        ECN_Mode             =     1;    // ECN Mode:0-off,1-on 
    extern int        DrawTarget           =     1;    // Draw Target:0-off,1-on
    
    extern string     mmInputs             = "===== Money Management settings: =====";
    extern int        MM_Mode              =     1;    // MM Mode: 0-off,1-by free Margin,2-by StopLoss
    extern double     Lots                 =   0.1;    // Lot size
    extern double     RiskFactor           =     0;    // Risk Factor(in decimals) for MM formula 
    extern double     MaxLots              =     0;    // Max Lot Size
    Attachment 12458

    Regards,
    Igor
    Babayz likes this.

Page 2 of 7 FirstFirst 1 2 3 4 ... 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
  •