Software Developer and Music Producer
News Fundamentals All Time Return:
1,159.1%
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
Disliked{quote} JB BRO THANKS FOR SELFLESS HELP. BRO PLEASE CHECK MY GIVEN LINK AND IF YOU ARE INTERESTED PLEASE CODE ONE GOOD VOLUME NO DEMAND NO SUPPLY BAR INDICATOR AND DASHBOARD WITH EXPRESS CONDITIONS https://www.forexfactory.com/thread/...2#post15004012 {image}Ignored
Disliked{quote} Sorry away from my database for the next 5 weeks so don't have access to the code. Make sure you have enough data for the monthly that can cause an array out of range issue.Ignored
Disliked{quote} {file} {image} The colors of the OnChart Arrows are the same as the colors of the separate window arrows. Vertical shift of arrows in pixel does not apply to the OnChart Arrows!Ignored
Disliked{quote} {file} Note: Indicator not friendly for non-cyrilic alphabet users! {image} Also all the alerts are in cyrilic. English version: {file}Ignored
Disliked{quote} Oh, the indicator was not complete! There is a filter option, and there are 4 arrows, not two. So, I corrected the code! {file}Ignored
DislikedHi guys, Simple question for the programmers, When I want to create a signal that the bar closes on the top half is very simple: Close[i] > (High[i] + Low[i])/2 But when I say that I wanted to close on the top 75% of its range and I write the following code does not work: Close[i] > (High[i]-(High[i] + Low[i])/4) Please could someone tell me what is wrong? Thanks Kind regardsIgnored
Disliked{quote} so possibale to add popup sound alert when filter approw appear?Ignored
Disliked{quote} It's already there. It's the same alert. But, yeah, I forgot to correct one more thing: {file}Ignored
Disliked{quote} jnevins! I loaded this EA that you're referring to above(correctly loaded I may add) on 4H chart and received a code131 error and so this EA has not taken a single trade so far...what could be the problem?Ignored
DislikedHi guys, Simple question for the programmers, When I want to create a signal that the bar closes on the top half is very simple: Close[i] > (High[i] + Low[i])/2 But when I say that I wanted to close on the top 75% of its range and I write the following code does not work: Close[i] > (High[i]-(High[i] + Low[i])/4) Please could someone tell me what is wrong? Thanks Kind regardsIgnored
//bullish candle
if( Close[i+1]>Open[i+1] && Close[i+1]>(High[i+1]-((High[i+1]-Low[i+1])/4)) )
{
Buffer1[i+1] = Low[i+1];
}
//bearish candle
if( Close[i+1]<Open[i+1] && Close[i+1]<(Low[i+1]+((High[i+1]-Low[i+1])/4)) )
{
Buffer2[i+1] = High[i+1];
} Disliked{quote} i think this is what you want //bullish candle if( Close[i+1]>Open[i+1] && Close[i+1]>(High[i+1]-((High[i+1]-Low[i+1])/4)) ) { Buffer1[i+1] = Low[i+1]; } //bearish candle if( Close[i+1]<Open[i+1] && Close[i+1]<(Low[i+1]+((High[i+1]-Low[i+1])/4)) ) { Buffer2[i+1] = High[i+1]; } {image}Ignored
Disliked{quote} can you check again geting lot of signal ... and also you make it separate alert only filter arrow if possibale.thank you {image}Ignored
input string my_colors="Red, Green, Yellow";
color=colors[];
int OnInit()
{
StringSplit(my_colors,newt,all_p);
....
} DislikedGood Morning Kent all my MT4 instances run in portable mode. Don't like to fill the system partition with useless data. Would it help when I works with sym link? {quote}Ignored
Disliked{quote} The 'News reader.ex4', and ALL similar XML news readers have the new problem, which is they must now live within ForexFactory's *new* strict limit of only ~2 downloads of the news XML file every 5 minutes, otherwise their access is temporarily blocked. Almost all such programs assume that every request will return a legitimate XML file, every time it asks. This is no longer true. Using portable mode -- which I do also -- does not make any difference to the problem. The solution is for ALL the XML news programs to *share* a local copy of...Ignored
Disliked{quote} The 'News reader.ex4', and ALL similar XML news readers have the new problem, which is they must now live within ForexFactory's *new* strict limit of only ~2 downloads of the news XML file every 5 minutes, otherwise their access is temporarily blocked. Almost all such programs assume that every request will return a legitimate XML file, every time it asks. This is no longer true. Using portable mode -- which I do also -- does not make any difference to the problem. The solution is for ALL the XML news programs to *share* a local copy of...Ignored