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} Couldn't see anything wrong with it other than one of the "for loops" worked from the present to the past - but I updated and cleaned a little. Seems to work. {file}Ignored
Disliked{quote} Hey Luke, Can you write this ridiculously easy EA idea? Basically. Its ATR based. Say I want to set my start time (customizable time filter) at 8:00am If ATR goes up a (set number) by 11:00am. Buy. If ATR goes down a (set number) by 11:00am. Sell. with usually SL, TP and Trailing stop/step Sounds so easy it's almost absurd right? Well.....I looked at the 2 week history of all USD pairs (using this timeframe) It's over 80% accurate.Ignored
Dislikedhello dear coders... i have this modified indicator which is working fine just have a glitch ! some times it just stop working i dont knw why ! could any one fix this issue please? thanks in advance GBPUSDM2.png;2145312 EURUSDM2.png;2145315 Awesome 4 color .alert v nmc.mq4;2145318 {image} {image} {file}Ignored
DislikedScreenshot1.png;2146283 See Drake Delay Stochastic , Now will do enter in time for trade ,Am going to leave the same pattern for ever and carry on trading as it is {image}Ignored
DislikedCan someone help me find an EA or script that can place pending order buy and sell position of one currency pair at the same time with take profit and stop loss..For example , place pending order for EUR/USD at specified price 1.06995 with TP=100pips(5digit broker) and SL=50pips(5digit broker)..I will be glad if someone can help me find this because I have searching all over the internet both FF and google but ll efforts have proved futile..Ignored
Disliked{quote} Hey Terminator, Can you send me a download for your drake stochastic oscillator? ThanksIgnored
DislikedScreenshot1.png;2146283 See Drake Delay Stochastic , Now will do enter in time for trade ,Am going to leave the same pattern for ever and carry on trading as it is {image}Ignored
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
static datetime start_day_time=0;
datetime now_day_time=iTime(Symbol(),PERIOD_D1,0);
bool new_check=false;
static int check_count=0;
if(start_day_time!=now_day_time)
{
start_day_time=now_day_time;
check_count=0;
}
static datetime recheck_time=0;
if(check_count<30)
{
new_check=true;
check_count++;
recheck_time=TimeCurrent();
}
if(TimeCurrent()>=recheck_time+(CheckSeconds*1))
{
new_check=true;
recheck_time=TimeCurrent();
}
if(new_check)
{
CalculateCurrentDayMid();
BuildCurrentDayMid();
}
static datetime bar_time=0;
if(bar_time!=Time[0])
{
bar_time=Time[0];
CalculateDayPositions();
BuildDayObjects();
CalculateWeekPositions();
BuildWeekObjects();
CalculateCurrentDayMid();
BuildCurrentDayMid();
}
//--- return value of prev_calculated for next call
return(rates_total);
}
//+------------------------------------------------------------------+