Attached File(s)
- #44,126
- Edited 7:05pm Feb 19, 2021 6:13pm | Edited 7:05pm
- Joined Mar 2017 | Status: Trader | 2,054 Posts
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
DislikedDoes this indicator (I know it's not mql.4) exist using "Average Weekly Range" instead of the Daily? I've been looking everywhere for this exact indicator but using Weekly stats instead of daily but I cannot find it anywhere. Anyone? If it does not exist, could one of the many extremely generous coders on this thread please create one? {image} {file} I know this is an "exe" file and cannot be changed. I'm just showing exactly what I'm looking for. TYVM!!Ignored
Disliked{quote} ( attached UPDATED mq4 file ) try with Candle ID = 1 and see how it works. Note - for EMA try to use Candle ID = 1 => Previous candle Candle ID = 0 => Current Candle, Candle ID = 1 => Previous candle, Candle ID = 2 => previoue to previous candle and ... so on ... {file}Ignored
DislikedDoes anyone have or can code an indicator that tracks your DD%? An indicator that will track your Max Daily DD%, Max Weekly DD%, Max Monthly DD%, Max Yearly DD%. Also have a magic number so it can be used on different EA's at the same time. For as important as DD% is, surely this indicator must exist. I have looked for 2 years and have never found such thing. Does anyone have something like this that they could share?????? I was thinking of an indicator that looked like this........... Edit: It would be the calendar day, week, month, year. NOT the...Ignored
DislikedDear coders, is it really very difficult to code something like this,i wnat to see historical ATR and present ATR?im not a coder unfortunately,plz someone try it,i really need this,there is only 1 paid indictor is available in mql5 and that is also very complicated and big file.I have put up this request several times. {image}Ignored
Disliked{quote} bojack34 i-ProfitTrackerPctEmailAlert Shows Current,Today,Week,Month,Quarter,Year Percentage Gain & Loss Thus Far of All your Trades(No Magic # inputs) See https://www.forexfactory.com/thread/...03#post9703503 02 Trade Report you can see the status of all your open & close Trades and also separate the Magic Number for analysis of different Strategies. Just Make sure that by (End Date Option) you put Today's Date to get the Trade Report indicator to show all your trades. But no Draw Down Indicator that I can find that allows...Ignored
Disliked{quote} Thanks! Looks good. Max lines so far 12, if that can be done. Please see attached. Please add: 1. Options to enter and display labels for each line. 2. Option to display price level for each line. Is it possible to load the indicator twice or more? Some indicators won't work when added to 1 chart more than once. Sometimes I add lines to previous days for backtest so being able to add it more than once to a chart helps a lot. Thanks again. {image}Ignored
DislikedDear Coders, please can someone code an indictor that show numbers of the week on Daily or 4 hour chart plz? see the example below,it should start from jan till december to see the price action on lower time frame. {image}Ignored
Dislikedcan someone plz modify this indicator's date format like dd.mm.yyyy {image} {file}Ignored
DislikedDear Coders, please can someone code an indictor that show numbers of the week on Daily or 4 hour chart plz? see the example below,it should start from jan till december to see the price action on lower time frame. {image}Ignored
if(PositionSelect(_Symbol)==true)
{
for(int i = PositionsTotal() - 1; i >= 0; i--)
{
ulong ticket = PositionGetTicket(i);
string symbol=PositionGetString(POSITION_SYMBOL);
double oprice=PositionGetDouble(POSITION_PRICE_OPEN);
datetime time=PositionGetInteger(POSITION_TIME);
long type = PositionGetInteger(POSITION_TYPE);
if(_Symbol==symbol)
ObjectCreate(0,"test",OBJ_ARROW_UP,0,time,oprice);
ObjectSetInteger(0,"test",OBJPROP_COLOR,clrLimeGreen);
ObjectSetInteger(0,"test",OBJPROP_WIDTH,10);
}
} DislikedGuys, little help needed. I'm learning mql5 and trying very simple thing but no success. I need to draw arrow for every ...Ignored
Disliked{quote} hi my friend it is done . you can use that . 12 line display price display labels you can unlimited add to chart . {image}{file}Ignored