You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Пожалуйста, поставьте стрелки на сенсорном дисплее)))
Заранее большое спасибо)
Gyazo - 1522f153d0e03f31edd7619d23ef3869.pngalf_non_lag_bands_mtf_nmc.mq4
Alibydubby Может вы приложите, пожалуйста, mql файлы (используйте инструмент вложения помечено как на нижней картинке)
Here, too, the arrows on the touch, if you please))
Gyazo - 548a704b674a80e59387339da243d779.png
Here indicator) arrows on the touch, you're the best programmer))
Пожалуйста, добавьте стрелку на ощупь границы
Gyazo - bcbd7da7b734e448b844817fd2b063d8.png
[Код]//+------------------------------------------------------------------+//| асимметричные полосы.mq4 |
//| |
//| forex-tsd элиты только раздела |
//+------------------------------------------------------------------+
#property copyright "младен"
#property link "mladenfx@gmail.com"
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 DimGray
#property indicator_color2 Red
#property indicator_color3 LimeGreen
#property indicator_style1 STYLE_DOT
//
//
//
//
//
extern int bandsPeriod = 14;
extern int bandsMethod = MODE_SMA;
extern int bandsPrice = PRICE_CLOSE;
extern double bandsDeviations = 2;
//
//
//
//
//
двухместный maBuffer[];
двухместный upBuffer[];
двухместный dnBuffer[];
двухместный wuBuffer[];
двухместный wdBuffer[];
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
//
//
//
//
//
int init()
{
IndicatorBuffers(5);
SetIndexBuffer(0,maBuffer);
SetIndexBuffer(1,upBuffer);
SetIndexBuffer(2,dnBuffer);
SetIndexBuffer(3,wuBuffer);
SetIndexBuffer(4,wdBuffer);
return(0);
}
int deinit() { return(0); }
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
//
//
//
//
//
int start()
{
int counted_bars=IndicatorCounted();
int i,предел;
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
limit = MathMin(Bars-counted_bars,бары-1);
//
//
//
//
//
for(i=limit; i>=0; i--)
{
double price = iMA(NULL,0,1 ,0,MODE_SMA ,bandsPrice,i);
maBuffer = iMA(NULL,0,bandsPeriod,0,bandsMethod,bandsPrice,i);
if (i==(Bars-1))
{
upBuffer = maBuffer;
dnBuffer = maBuffer;
wuBuffer = цена-maBuffer;
wdBuffer = цена-maBuffer;
продолжить;
}
//
//
//
//
//
double diff = цена-maBuffer;
if(diff>=0)
{
wuBuffer = (wuBuffer*(bandsPeriod-1)+MathPow(diff,2))/bandsPeriod;
wdBuffer = wdBuffer*(bandsPeriod-1)/bandsPeriod;
}
еще
{
wdBuffer = (wdBuffer*(bandsPeriod-1)+MathPow(diff,2))/bandsPeriod;
wuBuffer = wuBuffer*(bandsPeriod-1)/bandsPeriod;
}
upBuffer = maBuffer + bandsDeviations*MathSqrt(wuBuffer);
dnBuffer = maBuffer - bandsDeviations*MathSqrt(wdBuffer);
}
return(0);
}
[/CODE]Dear Mladen
Dear MrTools
Is is possible to make the indicator of "
OnChart_WPRsmooth2 nmc.mq4"
Multi color, I mean the indicator line DeepSkyBlue to change its color on up and down and adding arrows in this case + alertsThanks in advance
Talaat E
Пожалуйста, поставьте стрелки на сенсорном дисплее)))
Заранее большое спасибо)
Gyazo - 1522f153d0e03f31edd7619d23ef3869.pngalf_non_lag_bands_mtf_nmc.mq4Alibydubby, added arrows and alerts.
Here, too, the arrows on the touch, if you please)) Gyazo - 548a704b674a80e59387339da243d779.png
Alibydubby, added the arrows and alerts.
Dear Mladen
Dear MrTools
Is is possible to make the indicator of "
OnChart_WPRsmooth2 nmc.mq4"
Multi color, I mean the indicator line DeepSkyBlue to change its color on up and down and adding arrows in this case + alertsThanks in advance
Talaat ETalaat E, added the nrp coloring along with the arrows and alerts..
Thank you very much, and this indicator can also put the arrows?)
Alibydubby, added the arrows and alerts.
Talaat E, added the nrp coloring along with the arrows and alerts..
Thanks MrTools, you are very helper man, Really thanks
Talaat E
Thank you very much, and this indicator can also put the arrows?)
Alibydubby
Here is the version with arrows and alerts : asymmetric_bands_allerts_amp_arrows.mq4