Is there a dashboard indicator available for the BBand-stop please?
Printable View
Is there a dashboard indicator available for the BBand-stop please?
Do we have a thread for dashboard indicators on here, if no,can we have one
We have this thread http://newdigital-world.com/trading-...ndicators.html and one dashboard indicator is here http://newdigital-world.com/trading-...html#post10853
If we have more dashboard indicators so I will create the thread.
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 :(handshake):
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
Hi,
Please check out the updated BBands_Stop indicator with ability to use the AllAverages indicator instead of the iMA function.
Attachment 13381Code://---- 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
Regards,
Igor
Thank's Igorad..
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