Attachments forums

List of attachments posted on this forum.


All files on forums: 135971

Re: MT4 Indicators with alerts/signals

mntiwana, Thu Oct 25, 2018 4:53 am

FBI wrote: Thu Oct 25, 2018 2:54 am I am not 100% sure, but I think this a non-repainter, alerts would be nice to confirm that, message and sound.
Thank You.

MA_BBands_v3.3.mq4

GBPUSDM1.png
Aside from the comments of a poster
Though i am zero in coding matters but i remember,once expert explained it is using "minus shift values"

double MAUP1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_HIGH,i);
double BB_UP = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_HIGH,MODE_UPPER,i+6);
double MA_HIGH = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_HIGH,i);

double MADN1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_LOW,i);
double BB_DN = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_LOW ,MODE_LOWER,i+6);
double MA_LOW = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_LOW,i);

double SEC_UP = iMA(NULL,0,9,-7,MODE_SMA,PRICE_HIGH,i);
double SEC_DN = iMA(NULL,0,9,-7,MODE_SMA,PRICE_LOW,i);
All files in topic