Waddah Attar Explosion Indicator - page 17

 
like that
 
vvFishvv:
can you share your tpl and indicators...........
 

good luck

Files:
 
vvFishvv:

good luck

Thanks........
 
vvFishvv:
Any luck with it?
 
Try this with it.....
Files:
 

I tested this indicator for more than thousand it worked perfectly with strategy.

But if possibles can some one make  ,Push Notification or Send Email option when the Moving Average (Under Sensitivity option ) when the Histogram bar reached or touched the MV  . It will save a lot of trader time 

 
Ahmad Waddah Attar:

I design this indicator to work on M30as very good

I´d like to know if today exist any update to this indicator?

 

Hi - does anyone have an example of where they read a value of this programmatically and pull the current Value or uses this as part of their trading strat in code programmatically in some other way?  I looked at the code and I can see the design but I cannot see how you get the value returned anywhere?

I'm trying to combine it with other indis in an EA but struggling to pull a bars 'value' out...


Many thanks

 
Rob Sherali:

Hi - does anyone have an example of where they read a value of this programmatically and pull the current Value or uses this as part of their trading strat in code programmatically in some other way?  I looked at the code and I can see the design but I cannot see how you get the value returned anywhere?

I'm trying to combine it with other indis in an EA but struggling to pull a bars 'value' out...


Many thanks

Well, don't know if this helps but I tried the code below to get a read of the iCustom values of the indicator...

You can see from the printout and screenshot bars 5,6,7 are a change in direction, according to the indicator, at least! From there you can just use Low[y] etc to get any bar values you need?

string txt="";
for(int y=0;y<10;y++){
 txt=StringConcatenate(txt,"\n",y,"|");
 for(int x=0;x<7;x++)
  txt=StringConcatenate(txt,iCustom(Symbol(),Period(),"wadi",x,y),",");
}

/*
0|0.02263176679189183,0,0.004948484616526638,0.0003,0,0,0,
1|0.02941676501094226,0,0.00465482588288757,0.0003,0,0,0,
2|0.01276928377824116,0,0.004966577896298396,0.0003,0,0,0,
3|0.00890348286529119,0,0.005527532541740321,0.0003,0,0,0,
4|0.001205684596078394,0,0.006103682822689915,0.0003,0,0,0,
5|0,0.002401099544541152,0.006129849590324365,0.0003,0,0,0,
6|0,0.005850271942470231,0.006239339388108389,0.0003,0,0,0,
7|0,0.0162231954874803,0.005905693524049571,0.0003,0,0,0,
8|0.0004755975080428243,0,0.005216979585928927,0.0003,0,0,0,
9|0.008863935401570711,0,0.005421637759939424,0.0003,0,0,0,
*/
wadi
Reason: