Page 4 of 7 FirstFirst ... 2 3 4 5 6 ... LastLast
Results 31 to 40 of 64
Like Tree20Likes

BBands_Stop

This is a discussion on BBands_Stop within the Trading tools forums, part of the Trading Forum category; Is there a dashboard indicator available for the BBand-stop please?...

      
   
  1. #31
    Junior Member
    Join Date
    May 2013
    Posts
    10
    Is there a dashboard indicator available for the BBand-stop please?

  2. #32
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2910
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Quote Originally Posted by forexted View Post
    Is there a dashboard indicator available for the BBand-stop please?
    I do not remember now sorry ... If I find one in my PC - I will upload it here
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  3. #33
    Junior Member
    Join Date
    Jun 2014
    Location
    naija
    Posts
    6
    Do we have a thread for dashboard indicators on here, if no,can we have one

  4. #34
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2910
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    We have this thread New FFx standard indicators and one dashboard indicator is here Psychological Levels

    If we have more dashboard indicators so I will create the thread.
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  5. #35
    Junior Member
    Join Date
    Apr 2014
    Posts
    16
    Hello Igorad,

    First of all, I'm new to this forum, and I can tell you that I'm truly fascinated with your WONDERFUL contributions to the trading community

    Looking at your coded tools and indicators, I have some doubts regarding two of them:
    Between your Advanced/Adaptive_Parabolic_Sar and your BBands_Stop indicators, which one do you prefer for day-trading and why? Or do you think it could be a good idea to use them maybe combined in some way?
    * I know those indicators are based on two original different indicators, but I would like to read the opinion of experienced traders using them, in order to help me to achieve a better and faster understanding of their proper/ideal applications.

    I'm asking you because I find them very similar in plain sight!
    * And I would also like YOUR answer/opinion, aside to what Sergey/Newdigital wrote in response inside the Advanced Parabolic SAR thread... Please!

    Best regards,
    Víctor

  6. #36
    igorad
    Guest
    Hi,

    Please check out the updated BBands_Stop indicator with ability to use the AllAverages indicator instead of the iMA function.

    Code:
    //---- input parameters
    extern int     TimeFrame            =     0;    //TimeFrame in min
    extern int     UpBandPrice          =     0;    //Upper Band Price(ex.2 for High)     
    extern int     LoBandPrice          =     0;    //Lower Band Price(ex.3 for Low) 
    extern int     MA_Length            =    20;    //Bollinger Bands Period
    extern int     MA_Method            =     0;    //MA Method(0...26) 
    extern double  Deviation            =     1;    //Deviation
    extern int     DeviationLength      =    20;    //Period of Standard Deviation
    extern double  MoneyRisk            =  1.00;    //Offset Factor
    
    extern int     SignalMode           =     1;    //Signal mode: 0-off,1-on  
    extern int     LineMode             =     1;    //Line mode: 0-off,1-on  
    extern int     DotMode              =     1;    //Dot mode: 0-off,1-on  
    
    extern string  alerts               = "--- Alerts & Emails ---";
    extern int     AlertMode            =     1;
    extern int     AlertShift           =     1;    //Alert Shift:0-current bar,1-previous bar
    extern int     SoundsNumber         =     5;    //Number of sounds after Signal
    extern int     SoundsPause          =     5;    //Pause in sec between sounds 
    extern string  UpSound              = "alert.wav";
    extern string  DnSound              = "alert2.wav";
    extern int     EmailMode            =     0;    //0-on,1-off   
    extern int     EmailsNumber         =     1;    //0-on,1-off
    Attachment 13381

    Regards,
    Igor
    chartartist, newdigital and Eris like this.

  7. #37
    Junior Member
    Join Date
    Jul 2014
    Posts
    19
    Thank's Igorad..

  8. #38
    Junior Member
    Join Date
    Jul 2014
    Posts
    19
    Quote Originally Posted by igorad View Post
    Hi,

    Please check out the updated BBands_Stop indicator with ability to use the AllAverages indicator instead of the iMA function.

    Code:
    //---- input parameters
    extern int     TimeFrame            =     0;    //TimeFrame in min
    extern int     UpBandPrice          =     0;    //Upper Band Price(ex.2 for High)     
    extern int     LoBandPrice          =     0;    //Lower Band Price(ex.3 for Low) 
    extern int     MA_Length            =    20;    //Bollinger Bands Period
    extern int     MA_Method            =     0;    //MA Method(0...26) 
    extern double  Deviation            =     1;    //Deviation
    extern int     DeviationLength      =    20;    //Period of Standard Deviation
    extern double  MoneyRisk            =  1.00;    //Offset Factor
    
    extern int     SignalMode           =     1;    //Signal mode: 0-off,1-on  
    extern int     LineMode             =     1;    //Line mode: 0-off,1-on  
    extern int     DotMode              =     1;    //Dot mode: 0-off,1-on  
    
    extern string  alerts               = "--- Alerts & Emails ---";
    extern int     AlertMode            =     1;
    extern int     AlertShift           =     1;    //Alert Shift:0-current bar,1-previous bar
    extern int     SoundsNumber         =     5;    //Number of sounds after Signal
    extern int     SoundsPause          =     5;    //Pause in sec between sounds 
    extern string  UpSound              = "alert.wav";
    extern string  DnSound              = "alert2.wav";
    extern int     EmailMode            =     0;    //0-on,1-off   
    extern int     EmailsNumber         =     1;    //0-on,1-off
    Attachment 13381

    Regards,
    Igor
    Hi igorad, what kind of type bollinger band on your chart? i think's different with deafault BB in metatrader....



    Regards,
    ChartArist

  9. #39
    igorad
    Guest
    Quote Originally Posted by chartartist View Post
    Hi igorad, what kind of type bollinger band on your chart? i think's different with deafault BB in metatrader....



    Regards,
    ChartArist
    Hi ChartArist,

    There is no any difference between the MT4 BB and the AllBB_v2 indicator when UpBand_Method=0, Middle_Method=0 and LoBand_Method=0. But you will see a difference for other MAs.

    Attachment 13449

    Regards,
    Igor

  10. #40
    Junior Member
    Join Date
    Jul 2014
    Posts
    19
    Quote Originally Posted by igorad View Post
    Hi ChartArist,

    There is no any difference between the MT4 BB and the AllBB_v2 indicator when UpBand_Method=0, Middle_Method=0 and LoBand_Method=0. But you will see a difference for other MAs.

    Regards,
    Igor
    Already clear for now, thanks for explanation Mr Igorad

    Regards,
    ChartArtist

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