HaskayafxDittoV01
- 指标
- Mehmet Bastem
- 版本: 1.0
- 激活: 5
on telegram application
This indicator uses standard Bollinger’s bands and two moving average,
it is providing trustable signal based on difference between Top and Bottom limit of Bollinger bands,
moving average trend degree within the Bollinger band zone. Signals are shown as arrows. as an optional,
you can set a voice alarm or email notification. You can also use this signal with expert advisor with below code
double v1=0; v1=GlobalVariableGet(Symbol()+string(Period())+"HSKMODAV01"); if(v1==0 ) return(0); // No Signals if(v1==1) { //Send BUY Order... GlobalVariableSet(Symbol()+string(Period())+"HSKMODAV01",0); } if(v1==2) { //Send SELL Order... GlobalVariableSet(Symbol()+string(Period())+"HSKMODAV01",0); }
Although this indicator can work for all time frame,
most suitable timeframe is M5 and USD Exchange such as GBPUSD,EURUSD,NZDUSD etc.
Below you can find indicator inputs.
BBandGiris=114;// Bollinger Band Period
BBandSapma=1;// Bollingers Band Deviation
EnfazlaYakinlik=200;// Minimum difference between Bollinger Band Lower - Bollinger Band Upper values
EnFazlaUzaklik=333; // Maximum difference between Bollinger Band Lower - Bollinger Band Upper values
MA1 = 671; // Moving Average Period
extern int MA1Shift=33; //Moving Average Shift
extern int MA2 = 2840; // Second Moving Average
extern int MA2Shift=-19; // Second Moving Average Shift
ArrowType=0;
0=Thick
1=Thin
2=Hollow
3=Round
4=Fractal
5=Diagonal Thin
6=Diagonal Thick
7=Diagonal Hollow
8=Thumb, 9=Finger
SendAnEmail=false; // Send E-Mail
CepUyariGonder=false; // Send Cell Phone Notificatiom
SesliAlarm=true; // Sound Alert
AktifGrafikGoster=true; // Change Chart. Actively loads the graphic at the time of signal generation