- #1,994
- Edited 10:03pm Mar 18, 2013 6:56pm | Edited 10:03pm
- Joined Jan 2011 | Status: Trader | 1,299 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
DislikedHi!
Could someone post me the code of trailing stop to breakeven price among the orders?
thanks.Ignored
DislikedHi Everybody, this is my first posting request. I found the attached SS2009_B0.2 indicator very useful, can somebody show me how to add the 2 dotted lines (red and green, sample as per attached) when the market situation changes - from up to down and vice versa.
Thanks.Ignored
you'll need 4 different calls to MACD: double macdHistCurrent = iMACD(NULL,0,12,26,9,MACD_Price,MODE_MAIN,i+1); double macdHistPrevious = iMACD(NULL,0,12,26,9,MACD_Price,MODE_MAIN,i+2); double macdSignalCurrent = iMACD(NULL,0,12,26,9,MACD_Price,MODE_SIGNAL,i+1); double macdSignalPrevious = iMACD(NULL,0,12,26,9,MACD_Price,MODE_SIGNAL,i+2);
string sObjName="buyline"+Time[i]; ObjectCreate(sObjName,OBJ_VLINE,0,Time[i],0); ObjectSet(sObjName,OBJPROP_WIDTH,1); ObjectSet(sObjName,OBJPROP_STYLE,STYLE_SOLID); ObjectSet(sObjName,OBJPROP_BACK,TRUE); ObjectSet(sObjName,OBJPROP_COLOR, Red);
ObjectCreate(sObjName,OBJ_VLINE,1,Time[i],0);
DislikedHi
I am using i-Profittracker indicator , see attached. Is it possible to add a feature that will display the total exposure of all open trades at SL level as percantage.
The indicator does display percentage of all open positions at current price , but it will be very useful to see the total exposure at SL level .
Thank YouIgnored
DislikedDear Kis,
I need your help to sort out the problem. I have made attached EA using custom indicator renko mash but I do not see the buy or sell while running on the live account and custom indicator is reloading again and again as per message of exper tab.
EA should buy if custom indicator is crossing above 0 & sell if custom indicator is crossing below 0.
I have been using this system manually since 6 months and it is working fine for me.
Thank you very much in advance for all your help.
ThanksIgnored
DislikedHi,
Is this EA you requsted before? Sorry, but I was busy, and working on an other EA, I'll start forward test soon. ( see backtest attached)
I'll check your problem So:
1. You want your positions be visble on the chart?
2. And prevent custom indicator reloading?Ignored