Disliked@jeanlouie Can you add the buffers to all level .it would be better if replace the line with arrow.Thanks {file}Ignored
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@jeanlouie Can you add the buffers to all level .it would be better if replace the line with arrow.Thanks {file}Ignored
Disliked{quote} @BestTraderEv i am talking about key level indicator which is attach with my previous message not that trash ..Ignored
DislikedHi jeanlouie, could you please add the angle of 1/8 and 1/6 to your indicator? Thanks in advance from your "geometric fan" I'm putting many geometry examples here https://www.forexfactory.com/thread/...hings?page=104 also thanks to your indicators....it's a topic that very few use thank's in advance {file}Ignored
DislikedAny coder on this thread, can you help or direct me to find an EA that tracks historical spreads of open charts of pairs and when the spread exceeds its average threshold it disables EA trading for those pairs until it returns within average range?Ignored
input int MaxAllowedSpread = 200; // Maximal Allowed Spread (Ask-Bid)
void OnTick() {
// no code before this
double SPREAD = MarketInfo(Symbol(),MODE_SPREAD); // gets current spread
if(SPREAD>MaxAllowedSpread)
{
PlaySound("timeout.wav"); // optional
MessageBox("Spread greater than allowed! ",NULL,MB_OK|MB_ICONEXCLAMATION); // optional
return; // doesn't allow EA to go further if spread greater than allowed
}
// rest of code:
} Disliked{quote} Please can u help code an EA based on my setup. I'll pay {image}Ignored
Disliked{quote} Please can u help code an EA based on my setup. I'll pay {image}Ignored
Disliked{quote} Michael_S_Jenkins_-_Secret_Angle_Method - v1.4 - additional 1/6 and 1/8 lines - the divisor for 6 and 8 are optional, so they can be from 3 and up eg 1/5 or 1/10 {file} {image}Ignored
Disliked{quote} {file} Symbol and MagicNumber. If there is an open Buy position for the Symbol and MagicNumber, EA will not open Sell. If there is an open Sell position for the Symbol and MagicNumber, EA will not open Buy. Under the condition that OneDirectionPerSymbol = true;Ignored
Disliked{quote}I will do that. Just share the indicators privately, and let's discuss. {image} Last seen 2009Ignored
Disliked{quote}I will do that. Just share the indicators privately, and let's discuss. {image} Last seen 2009Ignored
Disliked{quote} Thank you sir for what you have done but the problem still persist kindly help for this EA to open one direction {image} {file}Ignored
Disliked{quote} Please can u help code an EA based on my setup. I'll pay {image}Ignored
Disliked{quote} Is it really that difficult to check the user's profile??? @Metatrader And see when the user was last active? {image}Ignored
DislikedI adjusted the following indicator a bit and what i try to achieve is: - Arrow on chart when RSI gets overbought (extern int) and crosses back down to 45 level (extern int) - I think I achieved this with a bit of clumsy code, however only get an arrow when the rsi crosses back down the next candle after leaving overbought. - Now i want a new extern int NEXT_BARS: which look for the back down 45 RSI signal for the next x amount of bars after leaving overbought. And only than get an arrow after RSI was overbought AND cross back down the 45 level....Ignored