Hello
is there any new ver of this indicator attached(recent Strength ) with alert cross and alert level cross
thanks
is there any new ver of this indicator attached(recent Strength ) with alert cross and alert level cross
thanks
Attached File(s)
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedWould anyone be willing to update the code for this indicator ? It is a weekly breakout system. I have been looking for a weekly breakout box for awhile now and just so happen to stumble upon this one. Any help would be greatly appreciated. PS- I'm not so much concerned with the levels {file} {file} {image}Ignored
DislikedHello, im looking for an indicator that marks a "popgun" pattern in the chart. A popgun is a 2 candle pattern where an inside candle is followed by an outside candle. Maybe a little point or an arrow under the outside candle would be great. If someone could help me out it would be highly appreciated!Ignored
Disliked{quote} Thx T4 for ur quick help! Its more than a step in the right direction, though with ur indi marking every inside candle and every outside candle, it clutters the chart a bit with not needed informations. Thx again for ur indi but maybe one of the coders can help creating one where only the popguns get highlightedIgnored
Disliked{quote} Thanks CJ its okay now hope our dear old quadrsi has no new update yet.Ignored
DislikedHey guys one question. Can anyone code an expert that puts my take profit at a moving average. So that the take profit hits when the moving average gets hit. Thank youI tried it but my coding skill is so bad
Ignored
DislikedSeasons greetings to everyone! I was looking for a simple indicator that would show the vertical lines on your chart for whatever time I enter. So, if I were to enter 15:00. when I look at my USD/JPY chart I will see Vertical lines on 15:00 every day. Past and future. (as far as barcount will go) Does this indicator already exist? If not.....let me know if you can code. Thanks!Ignored
Disliked{quote} I've tried adding semicolon. It gives me more errors once I add.Ignored
Disliked{quote} haha super ..............i didnt do this time because of lazyness...and mind not freeIgnored
Disliked{quote} Put the MA's manually on chart, this indi will fire alerts when they cross when you put the information on the MA's you want. If you dont want the arrows, change this: Line 108 & down: SetIndexStyle(0, DRAW_ARROW,0,2); SetIndexArrow(0, 225); SetIndexBuffer(0, CrossUp); SetIndexStyle(1, DRAW_ARROW,0,2); SetIndexArrow(1, 226); SetIndexBuffer(1, CrossDown); to: SetIndexStyle(0, DRAW_NONE); //SetIndexArrow(0, 225); SetIndexBuffer(0, CrossUp); SetIndexStyle(1, DRAW_NONE); //SetIndexArrow(1, 226); SetIndexBuffer(1, CrossDown);Ignored
int start()
{
int i;
int CountedBars=IndicatorCounted();
int History=1000;
i=Bars-CountedBars-1;
if(i>History-1)
i=History-1;
while(i>=0)
{
UpBuffer[i] = 0;
DnBuffer[i] = 0;
//---call indicator XY Set
double VBUY=iCustom(Symbol(),0,"XY Set",5,i);
double VSELL=iCustom(Symbol(),0,"XY Set",4,i);
// SELL SIGNAL
if(Open[i]<Close[i] && VBUY!=0)
DnBuffer[i]=High[i]+10*MarketInfo(Symbol(),MODE_POINT);
if(Open[i]<Close[i] && VSELL!=0)
DnBuffer[i]=High[i]+10*MarketInfo(Symbol(),MODE_POINT);
// BUY SIGNAL
if(Open[i]>Close[i] && VSELL!=0)
UpBuffer[i]=Low[i]-10*MarketInfo(Symbol(),MODE_POINT);
if(Open[i]>Close[i] && VBUY!=0)
UpBuffer[i]=Low[i]-10*MarketInfo(Symbol(),MODE_POINT);
i--;
} Disliked{quote} Besides already offered below may be of interest to users.{image} Vertical Time Lines - https://www.mql5.com/en/code/12266Ignored
DislikedWould anyone be willing to update the code for this indicator ?Ignored
Disliked{quote}The code doesn't need updating. All that's required is for the other files be placed in the correct folders, and the MQ4 file compiled using MetaEditor/compiler build 509 (see this). I've attached the resulting EX4 which compiled without errors. However, I have no idea what the indicator does, or whether it works correctly, you will need to try it for yourself.{file} @anybody: if you have indicators or EAs that were written prior to Feb 2014, their MQ4 files...Ignored