@mrtools
Could you kindly add arrows to this indicator, respecting the levels that are assigned in the imput?
I searched a lot here on the forum, a version with arrows, I didn't find it.
Thank you very much
PS:
Could the buff values be 0 for call 1 for put?
Re: MT4 Indicator requests and ideas
12362Check here Kaufman volatilitylilpigz92 wrote: Tue Mar 09, 2021 9:54 am Can somebody please help with this, the indicator works fine with broker chart but ran off when I plug into Soft4FX simulator. Adding alert will be much appreciated
Re: MT4 Indicator requests and ideas
12363Dear All Coder
please modifie my indicator
what i want is
1. Elliminate double fractal ( 1 up fractal 1 vs down fractal each side)
2. dot length is 2x (Up to Down fractal distance)
thanks before
please modifie my indicator
what i want is
1. Elliminate double fractal ( 1 up fractal 1 vs down fractal each side)
2. dot length is 2x (Up to Down fractal distance)
thanks before
Code: Select all
//+------------------------------------------------------------------+
//| 3 Fractals.mq4 |
//| Copyright © 2020 |
//| Sultan's_Channel |
//| anto.mulyanto@gmail.com |
//+------------------------------------------------------------------+
#property copyright "Anto.mulyanto"
#property link "anto.mulyanto@gmail.com"
#property indicator_chart_window
#property indicator_buffers 3
#property indicator_color1 Red
#property indicator_color2 Aqua
//---- buffers
double FUp[];
double FDn[];
double ZZ[];
double val1;
double val2;
int i;
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexArrow(0, 159);
SetIndexArrow(1, 159);
//----
SetIndexStyle(0, DRAW_ARROW, STYLE_DOT, 1);
SetIndexDrawBegin(0, i);
SetIndexBuffer(0, FUp);
SetIndexLabel(0,"Atas");
//----
SetIndexStyle(1,DRAW_ARROW,STYLE_DOT,1);
SetIndexDrawBegin(1,i);
SetIndexBuffer(1, FDn);
SetIndexLabel(1,"Bawah");
//----
return(0);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int start()
{
i = Bars;
while( i >= 0)
{
val1 = High[i] < High[i+1] && High[i+1] > High[i+2];
//----
if(val1 > 0 )
FUp[i+1] = High[i+1];
else if(val2 == 0 )
FUp[i+1] = FUp[i+2];
val2 = Low[i] > Low[i+1] && Low[i+1] < Low[i+2];
//----
if(val2 > 0 )
FDn[i+1] = Low[i+1];
else if(val1 == 0 )
FDn[i+1] = FDn[i+2];
i--;
}
return(0);
}
//+------------------------------------------------------------------+Re: MT4 Indicator requests and ideas
12364It looks like a fractal support resistance type indicator. You could actually use this instead.mulyanto wrote: Tue Mar 09, 2021 6:53 pm Dear All Coder
please modifie my indicator
what i want is
1. Elliminate double fractal ( 1 up fractal 1 vs down fractal each side)
2. dot length is 2x (Up to Down fractal distance)
thanks before
Code: Select all
//+------------------------------------------------------------------+ //| 3 Fractals.mq4 | //| Copyright © 2020 | //| Sultan's_Channel | //| anto.mulyanto@gmail.com | //+------------------------------------------------------------------+ #property copyright "Anto.mulyanto" #property link "anto.mulyanto@gmail.com" #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Red #property indicator_color2 Aqua //---- buffers double FUp[]; double FDn[]; double ZZ[]; double val1; double val2; int i; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int init() { //---- drawing settings SetIndexArrow(0, 159); SetIndexArrow(1, 159); //---- SetIndexStyle(0, DRAW_ARROW, STYLE_DOT, 1); SetIndexDrawBegin(0, i); SetIndexBuffer(0, FUp); SetIndexLabel(0,"Atas"); //---- SetIndexStyle(1,DRAW_ARROW,STYLE_DOT,1); SetIndexDrawBegin(1,i); SetIndexBuffer(1, FDn); SetIndexLabel(1,"Bawah"); //---- return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int start() { i = Bars; while( i >= 0) { val1 = High[i] < High[i+1] && High[i+1] > High[i+2]; //---- if(val1 > 0 ) FUp[i+1] = High[i+1]; else if(val2 == 0 ) FUp[i+1] = FUp[i+2]; val2 = Low[i] > Low[i+1] && Low[i+1] < Low[i+2]; //---- if(val2 > 0 ) FDn[i+1] = Low[i+1]; else if(val1 == 0 ) FDn[i+1] = FDn[i+2]; i--; } return(0); } //+------------------------------------------------------------------+
viewtopic.php?p=1295400436#p1295400436
Re: MT4 Indicator requests and ideas
12365no is different,Darks wrote: Tue Mar 09, 2021 7:40 pm It looks like a fractal support resistance type indicator. You could actually use this instead.
viewtopic.php?p=1295400436#p1295400436
i need to draw symmetrical up dan down triangle with it
Re: MT4 Indicator requests and ideas
12366Okay.mulyanto wrote: Tue Mar 09, 2021 8:51 pm no is different,
i need to draw symmetrical up dan down triangle with it
So you don't want to repeat the signals unless an opposite signal is formed. Well you can declare static integers at beginning of the code and change values after one condition is met thereby preventing repetition of same signal or bool condition can be used but not sure about that, haven't tried yet. But still I believe that it won't eliminate the signals in between as that depends on the fractal period. It would only prevent same signal from repeating.
Re: MT4 Indicator requests and ideas
12368hi coders, hope you guys don't mind if i ask little favor to add alert when the price cross in to the box
regards,
regards,
Re: MT4 Indicator requests and ideas
12369sorry bro, I'm have a question with an old indicator but I'm not use it now.
So. I found this indicator is this forum but maybe it's alert have problem. It alert many time. I try to change some options but nothing happen.
anyone can help me to fix it, just alert when candle close, and show message box when alert?
Thank you so much
Re: MT4 Indicator requests and ideas
12370Dear programmers! I have an indicator.
Can divergence and arrows be added here?
In advance, I am very grateful for your work.
Can divergence and arrows be added here?
In advance, I am very grateful for your work.