Disliked{quote} my humble request to all master coder please convert attached mt5 to mt4 please. thanks in advance.Ignored
Hello, have you found anyone that has converted this indicator to mt4 if so please share.. thank you
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} my humble request to all master coder please convert attached mt5 to mt4 please. thanks in advance.Ignored
DislikedCoders I appreciate any help in completing this indicator I got the trend buffers.... set up but I can't seem to get the format to show the -1 & 1 trend buffer see line 321. Thank you {image} {file}Ignored
Disliked{quote} Hi Shakka, Is this what you are looking for? Checks time is 12:15 Sets distance to 0.001 (10 points) Sets LotSize to 1 If the time is right it sets the BuyPrice to the current price + 10 points If it breaks above this BuyPrice the system will take a trade. Took like 2mins to make this system, pretty epic {image}Ignored
Disliked{quote} Hi cja. We download indicator from this page Please check and add alert Thanks https://www.forexfactory.com/thread/...75#post2330475Ignored
Disliked{quote} Thanks In backtesting, the EA makes several buy and closing orders only to close all of them at loss Kindly check the error. ThanksIgnored
Disliked{quote} This is Blockly from google if i'm not mistaken. Better use original mql Eventually, traders have to learn code for themself. If someone help for 1-2 indis/ea, it'll always another request. This will become an infinite loop, never stop. New req. done, there's another req. If its done, another request. It'll never stop.. You're all have to learn code by yourself if want everything exactly as you requestIgnored
DislikedHi Great Coders, i am looking for a "session" indicator that can shows the box with pips range on chart, but still can not find it now. i just found one here : https://www.forexfactory.com/thread/...5#post13935015 but there is still some features that i can not get on it : *) there is no box for "Asian" session on monday ... but for tuesday -Friday, it is ok *) there is no range information (high-low in pips) for each session i just "only" change the setting for color, line style, nothing else. is there some bugs with the code,...Ignored
DislikedHi Great Coders, i am looking for a "session" indicator that can shows the box with pips range on chart, but still can not find it now. i just found one here : https://www.forexfactory.com/thread/...5#post13935015 but there is still some features that i can not get on it : *) there is no box for "Asian" session on monday ... but for tuesday -Friday, it is ok *) there is no range information (high-low in pips) for each session i just "only" change the setting for color, line style, nothing else. is there some bugs with the code,...Ignored
//+------------------------------------------------------------------+
//| Simple Moving Average |
//+------------------------------------------------------------------+
double SimpleMA(const int position,const int period,const double &price[])
{
//---
double result=0.0;
//--- check position
if(position>=period-1 && period>0)
{
//--- calculate value
for(int i=0;i<period;i++) result+=price[position-i];
result/=period;
}
//---
return(result);
}
//+------------------------------------------------------------------+
//| Exponential Moving Average |
//+------------------------------------------------------------------+
double ExponentialMA(const int position,const int period,const double prev_value,const double &price[])
{
//---
double result=0.0;
//--- calculate value
if(period>0)
{
double pr=2.0/(period+1.0);
result=price[position]*pr+prev_value*(1-pr);
}
//---
return(result);
}
//+------------------------------------------------------------------+
//| Smoothed Moving Average |
//+------------------------------------------------------------------+
double SmoothedMA(const int position,const int period,const double prev_value,const double &price[])
{
//---
double result=0.0;
//--- check position
if(period>0)
{
if(position==period-1)
{
for(int i=0;i<period;i++) result+=price[position-i];
result/=period;
}
if(position>=period)
result=(prev_value*(period-1)+price[position])/period;
}
//---
return(result);
}
//+------------------------------------------------------------------+
//| Linear Weighted Moving Average |
//+------------------------------------------------------------------+
double LinearWeightedMA(const int position,const int period,const double &price[])
{
//---
double result=0.0,sum=0.0;
int i,wsum=0;
//--- calculate value
if(position>=period-1 && period>0)
{
for(i=period;i>0;i--)
{
wsum+=i;
sum+=price[position-i+1]*(period-i+1);
}
result=sum/wsum;
}
//---
return(result);
} Disliked{quote} its from tradeview.com.au some no-code automated platform I've made a really simple system using Bollinger bands and have some really awesome back-test results so far and I've been using it for a couple of weeks, check this. Buys the dip on indices. I do not really know much about trading or automation but looking at this, what more do I need to know? lol {image}Ignored
Disliked{quote} I just tested my system on 40 different symbols !! I am blown away, this is epic? lol {image} And If I only pick the best 6 this is what they do. {image} What do you guys think? I honestly would like some feedback or suggestions, do I just put money on this? press start?Ignored